UNPKG
sravani-node-app
Version:
latest (1.0.0)
1.0.0
sample nodejs application created
sravani-node-app
/
greeting.js
11 lines
(9 loc)
•
199 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
function
sayGoodmorning
(
name
){
return
"Good Morning"
+
"name"
; }
function
sayGoodevening
(
name
){
return
`Good Evening
${name}
`
; }
module
.
exports
={ sayGoodmorning,sayGoodevening }