Object.prototype.equals = function(b) {
var a = this;
for(i in a) {
if(typeof b[i] == "undefined") {
return false;
}
if(typeof b[i] == "object") {
if(!b[i].equals(a[i])) {
return false;
}
}
if(b[i] != a[i]) {
return false;
}
}
for(i in b) {
if(typeof a[i] == "undefined") {
return false;
}
if(typeof a[i] == "object") {
if(!a[i].equals(b[i])) {
return false;
}
}
if(a[i] != b[i]) {
return false;
}
}
return true;
};
var obj1 = {name:"A", age:10, subject:[1, 2, {A:1, B:2}]};
var obj2 = {age:10, name:"A", subject:[1, 2, {A:1, B:2}]};
obj1.equals(obj2);
true
객체 같은지 비교
|
2019.11.29 11:24:09
|
2019.12.10 10:41:05
|
483
|
Aiden
Total of Attached file
0.00 Bytes of 0 files
2022.10.20
2020.10.18
2020.10.17
2020.05.31
2020.04.24
2019.11.29
2019.11.21
2019.11.07
2017.01.11
2015.09.24
2013.12.20