JSFiddle - React, Tailwind, and code Playground

by Leo Cavalcante

JavaScript

var Person = {
    setName : function(val){
        this.name = val;
    },
    setAge : function(val){
        this.age = val;
    }
};


var woman = Object.create(Person);
woman.setName("Foo");

var man = Object.create(Person);
man.setName("Bar");


console.log(woman.name);
console.log(man.name);