const hero1 = { name: 'Batman' }; const hero2 = { name: 'Batman' }; console.log(hero1 === hero1); // => true console.log(hero1 === hero2); // => false.
確定! 回上一頁