JSFiddle - React, Tailwind, and code Playground
JavaScript
const obj = {
name: 'Batman',
getName: function() {
console.log(this.name);
}
};
obj.getName(); // Batman
const anotherObj = {
name: 'Superman'
}
obj.getName.call(anotherObj);
const obj = {
name: 'Batman',
getName: function() {
console.log(this.name);
}
};
obj.getName(); // Batman
const anotherObj = {
name: 'Superman'
}
obj.getName.call(anotherObj);