UNPKG

sagar-node-app

Version:

Sample nodeJS application created as part of NodeJS training 1st program

12 lines (10 loc) 209 B
class Person{ constructor(){ this.firstname=""; this.lastname=""; } getFullname(){ return `${this.firstname} ${this.lastname}`; } } module.exports = Person;