JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://amatiasq.com/fiddle-console.js"></script>
JavaScript
var animal = {};
animal.estaVivo = function() {
return true;
};
var perro = {};
perro.__proto__ = animal;
console.log(perro.estaVivo);