UNPKG

marvel_avengers

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