JSFiddle - React, Tailwind, and code Playground
by amatiasq
JavaScript
var animal = {};
animal.estaVivo = function() {
return true;
};
var perro = {};
perro.__proto__ = animal;
document.write(perro.estaVivo);
by amatiasq
var animal = {};
animal.estaVivo = function() {
return true;
};
var perro = {};
perro.__proto__ = animal;
document.write(perro.estaVivo);