UNPKG
sravani-node-app
Version:
latest (1.0.0)
1.0.0
sample nodejs application created
sravani-node-app
/
person.js
10 lines
•
203 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
class
Person
{
constructor
(
){
this
.
firstName
=
""
;
this
.
lastName
=
""
; }
getFullname
(
){
return
`
${
this
.firstName}
${
this
.lastName}
`
; } }
module
.
exports
=
Person
;