The Object is() static method determines whether two values are the same value.

    
    console.log(Object.is(900, 900));
    // true

    console.log(Object.is('1', 1));
    // false

    const account = { amount: 100 }
    const account1 = { amount: 100 }
    console.log(Object.is(account, account1));
    // false