JSFiddle - React, Tailwind, and code Playground
by sramnan
JavaScript
var person = {
name : "sonia",
getName : function(){
console.log(this.name);
}
}
name = "tesla";
function person {
this.getName1 = function(){
console.log(this.name);
}
}
person.getName();
person.getName();