bhargav
Version:
fje 'nkijnge[o
16 lines (15 loc) • 332 B
JavaScript
function hello(){
return "World";
}
function helloWorld(){
return hello()+'again';
}
function myPrivateFunction(number){
return number+1;
}
function increment(number){
return myPrivateFunction(number);
}
module.exports.helloworld=hello;
module.exports.helloWorldAgain=helloWorld;
module.exports.increment = increment;