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