JSFiddle - React, Tailwind, and code Playground

by Vladymyr Shevchuk

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)