return javascript function code example
Example 1: return statement javascript
function test(arg){
return arg;
}
Example 2: return string from javascript function
<script>
function showName() {
var result;
result = addString('Hello', ' World');
document.write (result );
}
function addString(fName, lName) {
var val;
val = fName + lName;
return val;
}
</script>
<input type = "button" onclick = "showName()" value = "Result">
Example 3: return value from javascript function
function num(x, y) {
var sum = x + y;
return sum;
}
Example 4: return this javascript
Function.prototype.method = function (name, func) {
this.prototype[name] = func;
return this;
};
Example 5: what does return do in javascript
function add(a, b) {
return a + b;
}
var sum = add(5, 24);