UNPKG

marvel_avengers

Version:
10 lines (9 loc) 200 B
let hero = { title : "Hulk", firstname : "Bruce", lastname : "Banner", fullname : function(){ return this.firstname+" "+this.lastname; } }; module.exports = hero;