JSFiddle - React, Tailwind, and code Playground
by evgkch
JavaScript
let timerPrototype = Object.freeze({
start : function() {},
stop : function() {}
});
let timer = Object.create(timerPrototype);
timer.__proto__ === timerPrototype; //true
console.dir(timer)
console.dir(Array.prototype)