We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var i = 1; while(i){ switch (i) { default: i = 0; continue; } console.log('after default') }
在正常js执行环境下,continue会跳出while loop,不会输出console 然而通过eval5执行此段代码,continue仅跳出switch,会输出console
麻烦作者大大看下该种执行不一致的情况如何解决
The text was updated successfully, but these errors were encountered:
905e476
No branches or pull requests
在正常js执行环境下,continue会跳出while loop,不会输出console
然而通过eval5执行此段代码,continue仅跳出switch,会输出console
麻烦作者大大看下该种执行不一致的情况如何解决
The text was updated successfully, but these errors were encountered: