0
False ??
Why the answer is false ?? https://www.sololearn.com/post/914981/?ref=app
5 Réponses
+ 4
Because in js object can't be compared . comparing 2 objects always return false though they have same property & same value .
+ 4
Jeff's JK (HTML challenger and the coders 💻)🇮🇩
var a =[1,2,3];
var b=[1,2,3];
alert(a==b);//false
a=b;
alert(a==b);//true
+ 2
+ 1
Hmm ...
-_-
Always false ??