JSFiddle - React, Tailwind, and code Playground

by HaJIuBauKa

JavaScript

var Human = {type: "Human", head: 1, legs: 2};
var Megahuman = Object.create(Human);

Megahuman.head = 2;

alert(Megahuman.type);
alert(Megahuman.head);
alert(Human.head);