欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JS判断两个数组或对象是否相同的方法示例

程序员文章站 2023-10-27 17:15:16
本文实例讲述了js判断两个数组或对象是否相同的方法。分享给大家供大家参考,具体如下: js 判断两个数组是否相同 要判断2个数组是否相同,首先要把数组进行排序,然后转换...

本文实例讲述了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程序设计有所帮助。