Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Javascript Interview Questions

//Javascript Interview Questions

var a = [15];
var b = [15];
console.log(a[0] == b[0]);
//ture
console.log(a[0] === b[0]);
//true
Source by www.guru99.com #
 
PREVIOUS NEXT
Tagged: #Javascript #Interview #Questions
ADD COMMENT
Topic
Name
7+1 =