JSFiddle - React, Tailwind, and code Playground

by dmitri_pavlutin

JavaScript

const hero1 = {
  name: 'Batman'
};
const hero2 = {
  name: 'Batman'
};

console.log(hero1 === hero1); // => true
console.log(hero1 === hero2); // => false

console.log(hero1 == hero1); // => true
console.log(hero1 == hero2); // => false

console.log(Object.is(hero1, hero1)); // => true
console.log(Object.is(hero1, hero2)); // => false