UNPKG
marvel_avengers
Version:
latest (1.1.0)
1.1.0
1.0.0
this is my first module
github.com/nodefiles/node-online-june
marvel_avengers
/
hulk.js
10 lines
(9 loc)
•
200 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
let
hero = { title :
"Hulk"
, firstname :
"Bruce"
, lastname :
"Banner"
, fullname :
function
(
){
return
this
.
firstname
+
" "
+
this
.
lastname
; } };
module
.
exports
= hero;