UNPKG

tejaswich-node-app

Version:

This sample node.js application is created for learning purpose

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