how to capture return value of a funcion code example
Example 1: function and returns node js
function hello(name) {
console.log("hello " + name);
}
hello("CSS");
//hello CSS
Example 2: how to return to value of x
document.write("big fat meany");