JSFiddle - React, Tailwind, and code Playground
by Nick Hulea
JavaScript
var person = {
firstName: 'Jimmy',
lastName: 'Smith',
fullNamea: function() {
return this.firstName + ' ' + this.lastName + "a";
},
get fullNameb() {
return this.firstName + ' ' + this.lastName + 'b';
}
}
console.log(person.fullNameb); // Jimmy Smith
console.log(person.fullNamea()); // Jimmy Smith