UNPKG

yash-nodeapp

Version:

sample nodejs application created as part of nodeJs training

11 lines (10 loc) 205 B
class Person{ constructor(){ this.firstName=""; this.lastName=""; } getFullName(){ return `${this.firstName} ${this.lastName}`; } } module.exports=Person;