//Javascript Interview Questions var a = [15]; var b = [15]; console.log(a[0] == b[0]); //ture console.log(a[0] === b[0]); //true