JSFiddle - React, Tailwind, and code Playground

by queryj

JavaScript

var person = function(){
  var name = "Rob";
    return{
        getName: function(){return name; },
        
        setName: function(newName){
          name = newName;
        }
    };
}();

console.log(person.name);
console.log(person.getName());
person.setName("jon");
console.log(person.getName());