how to return a function value in js code example
Example 1: return value from javascript function
function num(x, y) {
var sum = x + y;
return sum;
}
Example 2: return statement in javascript
// --- The following return statements all break the function execution: ---
return;
return true;
return false;
return x;
return x + y / 3;