What will be the output of the following code when executed in strict mode?
"use strict";
function test() {
var arguments = 10;
console.log(arguments);
}
test(5);
What will be the output of the following code when executed in strict mode?
"use strict";
function test() {
var arguments = 10;
console.log(arguments);
}
test(5);