UNPKG

sks-node-app

Version:

Sample Nodejs Program

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