how to return whatever is input into a function javascript code example
Example: return value from javascript function
function num(x, y) {
var sum = x + y;
return sum;
}
function num(x, y) {
var sum = x + y;
return sum;
}