send a function return javascript code example
Example 1: function and returns node js
function hello(name) {
console.log("hello " + name);
}
hello("CSS");
//hello CSS
Example 2: return statement javascript
function test(arg){
return arg;
}