JSFiddle - React, Tailwind, and code Playground
JavaScript
const hero = {
name: 'Batman'
};
console.log(hero.name !== undefined); // => true
console.log(hero.realName !== undefined); // => false
const hero = {
name: 'Batman'
};
console.log(hero.name !== undefined); // => true
console.log(hero.realName !== undefined); // => false