简体   繁体   中英

Compare two array of objects and return true if they are match

Let's say I have two array of objects as,

let detail1 = [
    {'book':'LOTR','price':'14'}
    {'book':'Harry pottar','price':'12'},      
]

let detail2 = [
    {'book':'Harry pottar','price':'15'},
    {'book':'LOTR','Price':'14'},
    {'book':'HPP','Price':'21'}
]

I want to compare two array of objects and return true or false depending on whether they are same or not.

Note: object's structure ie key will always be same, their value may or may not change.

For this I tried as,

for(let i = 0 ;i<detail1.length; i++){
    for(let j = 0; j<detail2.length; j++){
        if(JSON.stringify(detail1[i]) === JSON.stringify(detail2[i])){
            boolValue = true
        } else {
            boolValue = false
        }
    }
}

But this is giving incorrect value for let's say I have another array of object as,

let detail1 = [
    {'book':'LOTR','price':'14'}
    {'book':'Harry pottar','price':'12'},      
]

let detail2 = [
    {'book':'Harry pottar','price':'12'},
    {'book':'LOTR','price':'14'}
]

But when order is changed it's giving incorrect value.

What is the possible solution to compare two array of object and return true if they are same and false if different for any cases given the structure of object ie key is same.

You can't use JSON encoding for checking the equality, because it's order dependent, eg.:

 console.log( JSON.stringify({'book':'LOTR','price':'14'}) == JSON.stringify({'price':'14', 'book':'LOTR'}) )

However you can do something like this:

 let detail1 = [ {'book':'LOTR','price':'14'}, {'book':'Harry pottar','price':'12'}, ] let detail2 = [ {'book':'Harry pottar','price':'15'}, {'book':'LOTR','Price':'14'}, {'book':'HPP','Price':'21'} ] function equal(a, b){ return a.length == b.length && // same length and a.every( // every element in a e1 => b.some( // has a match in b e2 => e1.book == e2.book && e1.price == e2.price ) ) } console.log(equal(detail1,detail2), equal(detail1,detail1), equal(detail2,detail2))

As @TJ Crowder pointed out, you can actually avoid checking every entry of your object manually and just use Object.entries (be aware of using this only if your objects are composed by only key pair strings)

 let detail1 = [ {'book':'LOTR','price':'14'}, {'book':'Harry pottar','price':'12'}, ] let detail2 = [ {'book':'Harry pottar','price':'15'}, {'book':'LOTR','Price':'14'}, {'book':'HPP','Price':'21'} ] function equal(a, b){ return a.length == b.length && // same length and a.every( // every element in a e1 => b.some( // has a match in b e2 => Object.keys(e1).every(key => e1[key] === e2[key]) ) ) } console.log(equal(detail1,detail2), equal(detail1,detail1), equal(detail2,detail2))

You can easily achieve the result using Object.keys and every

arr1.length !== arr2.length &&
    arr1.every((o, i) =>
      Object.keys(o).every((prop) => arr2[i][prop] && arr2[i][prop] === o[prop])
    )

 let detail1 = [ { book: "LOTR", price: "14" }, { book: "Harry pottar", price: "12" }, ]; let detail2 = [ { book: "Harry pottar", price: "15" }, { book: "LOTR", Price: "14" }, { book: "HPP", Price: "21" }, ]; function isEqual(arr1, arr2) { if (arr1.length !== arr2.length) return false; return arr1.every((o, i) => { return Object.keys(o).every((prop) => { return arr2[i][prop] && arr2[i][prop] === o[prop]; }); }); } console.log(isEqual(detail1, detail2));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM