UNPKG

sravani-node-app

Version:

sample nodejs application created

11 lines (9 loc) 199 B
function sayGoodmorning(name){ return "Good Morning" + "name"; } function sayGoodevening(name){ return `Good Evening ${name}`; } module.exports={ sayGoodmorning,sayGoodevening }