Technical Rajni
What is the output of this code?var a = [1, 2];var b = [1, 2];console.log(a == b);console.log(a === b);
4 months ago | [YT] | 0
Technical Rajni
What is the output of this code?
var a = [1, 2];
var b = [1, 2];
console.log(a == b);
console.log(a === b);
4 months ago | [YT] | 0