UNPKG
jirsami
Version:
latest (1.0.0)
1.0.0
second project
jirsami
/
thor.js
12 lines
(9 loc)
•
205 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
let
hero = { title :
"Thor"
, firstname :
"Tjor"
, lastname :
"Odin son"
, fullname :
function
(
){
return
this
.
firstname
+
" "
+
this
.
lastname
; } };
module
.
exports
= hero;