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
入门级 难度★ 请分别写出在浏览器控制台执行以下代码的结果 function b(x,y,a){ arguments[2]=10; console.log(a); }; b(1,2,3); function b(x,y,a){ 'use strict' arguments[2]=10; console.log(a); }; b(1,2,3);
The text was updated successfully, but these errors were encountered:
第一个输出:10 第二个输出:3
严格模式下 arguments 不会追踪参数的变化
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: