JSFiddle - React, Tailwind, and code Playground
by justinwyllie
JavaScript
class Person {
set firstname(val){
this.firstname = val;
}
get firstname(){
return this.firstname;
}
}
person = new Person('Joe');
console.log(person.firstname());