how i get return from function of function in nodejs code example
Example: function and returns node js
function hello(name) {
console.log("hello " + name);
}
hello("CSS");
//hello CSS
function hello(name) {
console.log("hello " + name);
}
hello("CSS");
//hello CSS