UNPKG

sravani-node-app

Version:

sample nodejs application created

10 lines 203 B
class Person{ constructor(){ this.firstName=""; this.lastName=""; } getFullname(){ return `${this.firstName} ${this.lastName}`; } } module.exports=Person;