What will be the output of the following code when executed in strict mode?
"use strict";
function test() {
console.log(arguments);
}
test(1, 2, 3);
What will be the output of the following code when executed in strict mode?
"use strict";
function test() {
console.log(arguments);
}
test(1, 2, 3);