JSFiddle - React, Tailwind, and code Playground
JavaScript
const obj = {
riba: 'IronMan',
getName() {
return this.riba;
}
};
const getName = obj.getName;
console.log(getName());
const obj = {
riba: 'IronMan',
getName() {
return this.riba;
}
};
const getName = obj.getName;
console.log(getName());