91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JS判斷兩個數組或對象是否相同的方法示例

發布時間:2020-09-27 19:08:46 來源:腳本之家 閱讀:802 作者:huangpb0624 欄目:web開發

本文實例講述了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程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

连江县| 于都县| 开封县| 梧州市| 阿克| 武清区| 武城县| 无棣县| 建始县| 平阴县| 颍上县| 页游| 汉阴县| 汶川县| 五华县| 旌德县| 永宁县| 商城县| 博客| 双柏县| 郸城县| 曲阳县| 重庆市| 江山市| 肥乡县| 大余县| 贡觉县| 霞浦县| 乌苏市| 绥宁县| 长子县| 依安县| 文昌市| 于都县| 于田县| 清河县| 东海县| 遂昌县| 昌邑市| 寿光市| 潍坊市|