UNPKG

jirsami

Version:

second project

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