时间:2021-05-26
本文实例讲述了JS判断两个数组或对象是否相同的方法。分享给大家供大家参考,具体如下:
JS 判断两个数组是否相同
要判断2个数组是否相同,首先要把数组进行排序,然后转换成字符串进行比较。
JSON.stringify([1,2,3].sort()) === JSON.stringify([3,2,1].sort()); //true或者
[1,2,3].sort().toString() === [3,2,1].sort().toString(); //true经验证,上述方法对复杂数组结构不适用。
JS 判断两个对象是否相同
这是网上某大神封装对比对象是否相同的 function。
let cmp = ( x, y ) => {// If both x and y are null or undefined and exactly the same if ( x === y ) { return true; }// If they are not strictly equal, they both need to be Objects if ( ! ( x instanceof Object ) || ! ( y instanceof Object ) ) { return false; }//They must have the exact same prototype chain,the closest we can do is//test the constructor. if ( x.constructor !== y.constructor ) { return false; } for ( var p in x ) { //Inherited properties were tested using x.constructor === y.constructor if ( x.hasOwnProperty( p ) ) { // Allows comparing x[ p ] and y[ p ] when set to undefined if ( ! y.hasOwnProperty( p ) ) { return false; } // If they have the same strict value or identity then they are equal if ( x[ p ] === y[ p ] ) { continue; } // Numbers, Strings, Functions, Booleans must be strictly equal if ( typeof( x[ p ] ) !== "object" ) { return false; } // Objects and Arrays must be tested recursively if ( ! Object.equals( x[ p ], y[ p ] ) ) { return false; } } } for ( p in y ) { // allows x[ p ] to be set to undefined if ( y.hasOwnProperty( p ) && ! x.hasOwnProperty( p ) ) { return false; } } return true;};经检测,同样也不支持复杂数据结构的对象。
一般情况下用的话上述2种方法已经够用了,拿来作比较的一般都是简单的数据结构。
更多关于JavaScript相关内容感兴趣的读者可查看本站专题:《JavaScript数组操作技巧总结》、《JavaScript遍历算法与技巧总结》、《javascript面向对象入门教程》、《JavaScript数学运算用法总结》、《JavaScript数据结构与算法技巧总结》及《JavaScript错误与调试技巧总结》
希望本文所述对大家JavaScript程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
JS要比较两个数组是否有相同的元素,即两个数组所有元素都相同,但元素的顺序不一定一致。只就需要先将数组进行排序,再比较两个数组是否相等。js检测两个数组是否相似
JS中复合数组associativearray和对象是等同的,判断一个key是否存在于数组中(或对象是否包含某个属性),不能使用ary[key]==unde
java判断两个对象是否为同一个对象用“==”比较的是引用的地址,用equals比较的就是值。那我们new两个相同的对象什么属性都一样,为什么编译的时候不相同,
题目:请在index.html文件中,编写arraysSimilar函数,实现判断传入的两个数组是否相似。具体需求:1.数组中的成员类型相同,顺序可以不同。例如
1.Object类的equals()方法:比较两个对象是否是同一个对象,equals()方法比较两个对象,是判断两个对象引用指向的是同一个对象,即比较2个对象的