UNPKG
dwaipayan
Version:
latest (1.0.1)
1.0.1
1.0.0
this is my first node project
dwaipayan
/
blackwidow.js
11 lines
(9 loc)
•
206 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
let
hero = {
title
:
"Black Widow"
,
firstname
:
"Natasha"
,
lastname
:
"Romanoff"
,
fullname
:
function
(
){
return
this
.
firstname
+
" "
+
this
.
lastname
; } };
module
.
exports
= hero;