js return result of function code example
Example 1: function and returns node js
function hello(name) {
console.log("hello " + name);
}
hello("CSS");
//hello CSS
Example 2: return value from javascript function
function num(x, y) {
var sum = x + y;
return sum;
}