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


Posted in Javascript onFebruary 28, 2019

本文实例讲述了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 onkeypress事件入门实例(按下或按住一个键盘按键)
Oct 17 Javascript
jQuery中clearQueue()方法用法实例
Dec 29 Javascript
javascript搜索框效果实现方法
May 14 Javascript
JavaScript中的call方法和apply方法使用对比
Aug 12 Javascript
Seajs 简易文档 提供简单、极致的模块化开发体验
Apr 13 Javascript
node.js + socket.io 实现点对点随机匹配聊天
Jun 30 Javascript
Vue+jquery实现表格指定列的文字收缩的示例代码
Jan 09 jQuery
vue项目中导入swiper插件的方法
Jan 30 Javascript
详解.vue文件中style标签的几个标识符
Jul 17 Javascript
在小程序中集成redux/immutable/thunk第三方库的方法
Aug 12 Javascript
vue2.0+SVG实现音乐播放圆形进度条组件
Sep 21 Javascript
微信小程序 bindtap 传参的实例代码
Feb 21 Javascript
jQuery.parseJSON()函数详解
Feb 28 #jQuery
js获取form表单中name属性的值
Feb 27 #Javascript
用VueJS写一个Chrome浏览器插件的实现方法
Feb 27 #Javascript
jQuery each和js forEach用法比较
Feb 27 #jQuery
JavaScript遍历数组的三种方法map、forEach与filter实例详解
Feb 27 #Javascript
Vue CLI 2.x搭建vue(目录最全分析)
Feb 27 #Javascript
JavaScript中filter的用法实例分析
Feb 27 #Javascript
You might like
php设计模式 Proxy (代理模式)
2011/06/26 PHP
关于PHP的相似度计算函数:levenshtein的使用介绍
2013/04/15 PHP
使用php判断网页是否gzip压缩
2013/06/25 PHP
php数组编码转换示例详解
2014/03/11 PHP
Zend Framework入门教程之Zend_Db数据库操作详解
2016/12/08 PHP
PHP isset()及empty()用法区别详解
2020/08/29 PHP
jquery 模拟类搜索框自动完成搜索提示功能(改进)
2010/05/24 Javascript
Knockout结合Bootstrap创建动态UI实现产品列表管理
2016/09/14 Javascript
在DWR中实现直接获取一个JAVA类的返回值的两种方法
2016/12/25 Javascript
JS实现点击表头表格自动排序(含数字、字符串、日期)
2017/01/22 Javascript
jQuery插件echarts实现的多折线图效果示例【附demo源码下载】
2017/03/04 Javascript
Angular 2父子组件数据传递之局部变量获取子组件其他成员
2017/07/04 Javascript
vue的传参方式汇总和router使用技巧
2018/05/22 Javascript
基于jQuery实现的设置文本区域的光标位置
2018/06/15 jQuery
JavaScript原型链与继承操作实例总结
2018/08/24 Javascript
jQuery操作选中select下拉框的值代码实例
2020/02/07 jQuery
解决vue的touchStart事件及click事件冲突问题
2020/07/21 Javascript
[01:34]2014DOTA2 TI预选赛预选赛 选手比赛房大揭秘!
2014/05/20 DOTA
[04:09]显微镜下的DOTA2第十二期—NaVi美如画的团战
2014/06/23 DOTA
python开发之thread实现布朗运动的方法
2015/11/11 Python
对Python中plt的画图函数详解
2018/11/07 Python
解决pip install xxx报错SyntaxError: invalid syntax的问题
2018/11/30 Python
Django REST framework视图的用法
2019/01/16 Python
浅析Python 读取图像文件的性能对比
2019/03/07 Python
Python实现微信翻译机器人的方法
2019/08/13 Python
python 连续不等式语法糖实例
2020/04/15 Python
搭建pypi私有仓库实现过程详解
2020/11/25 Python
英国轻奢珠宝品牌:Astley Clarke
2016/12/18 全球购物
大学新生军训自我鉴定
2014/03/18 职场文书
《忆江南》教学反思
2014/04/07 职场文书
个人收入证明范本
2014/09/18 职场文书
房屋租赁协议书(标准版)
2014/10/02 职场文书
2015年教师节贺卡寄语
2015/03/24 职场文书
办公用品管理制度
2015/08/04 职场文书
2016年优秀教师先进事迹材料
2016/02/26 职场文书
Go web入门Go pongo2模板引擎
2022/05/20 Golang