What will be the output of the following code when executed in strict mode?
"use strict";
function exampleFunc() {
"use strict";
console.log(this === undefined);
}
exampleFunc.call(null);
What will be the output of the following code when executed in strict mode?
"use strict";
function exampleFunc() {
"use strict";
console.log(this === undefined);
}
exampleFunc.call(null);