JSFiddle - React, Tailwind, and code Playground
JavaScript
const hero = {
name: 'Batman'
};
// Dot property accessor
console.log(hero.name); // => 'Batman'
const hero = {
name: 'Batman'
};
// Dot property accessor
console.log(hero.name); // => 'Batman'