UNPKG
marvel_avengers_dwaipayan
Version:
latest (1.0.0)
1.0.0
this is my first node project
marvel_avengers_dwaipayan
/
thor.js
11 lines
(9 loc)
•
195 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
let
hero = {
title
:
"Thor"
,
firstname
:
"Thor"
,
lastname
:
"Odinson"
,
fullname
:
function
(
){
return
this
.
firstname
+
" "
+
this
.
lastname
; } };
module
.
exports
= hero;