UNPKG

marvel_avengers

Version:
10 lines (9 loc) 201 B
let hero = { title : "Ironman", firstname : "Tony", lastname : "Stark", fullname : function(){ return this.firstname+" "+this.lastname; } }; module.exports = hero;