JSFiddle - React, Tailwind, and code Playground
JavaScript
const obj = {
name: 'Batman',
getName: () => {
return this.name;
}
};
obj.getName();
const obj = {
name: 'Batman',
getName: () => {
return this.name;
}
};
obj.getName();