UNPKG

rishu-node-app

Version:

Sample node js application

14 lines (12 loc) 219 B
class Person{ constructor() { this.firstName=""; this.lastName=""; } getFullName() { return `${this.firstName} ${this.lastName}`; } } module.exports=Person;