UNPKG

dwaipayan

Version:

this is my first node project

11 lines (9 loc) 206 B
let hero = { title:"Black Widow", firstname:"Natasha", lastname:"Romanoff", fullname: function(){ return this.firstname+" "+this.lastname; } }; module.exports = hero;