JSFiddle - React, Tailwind, and code Playground
JavaScript
const parent = {
_name: 'Batman',
get name () {
return this.name;
},
set name (data) {
this._name = data;
}
};
const child = {};
child.constructor.prototype = null;
child.name = 'Superman';
console.log(child)