javascript function return value code example

Example 1: javascript function

function myFunc(theObject) {
  theObject.make = 'Toyota';
}

var mycar = {make: 'Honda', model: 'Accord', year: 1998};
var x, y;

x = mycar.make; // x gets the value "Honda"

myFunc(mycar);
y = mycar.make; // y gets the value "Toyota"
                // (the make property was changed by the function)

Example 2: define function in javascript

/* Declare function */
function myFunc(param) {
  // Statements 
}

Example 3: jquery function return

function myFunction(p1, p2) {
  var a = "";
 $.post( "/url", function( data ) {a = data.result;});
  return a;
}

Example 4: return statement javascript

function test(arg){
    return arg;
}

Example 5: javascript return

Babel compiles "javascript return" (depending on quantum airspeed) into either:
"The return of the Javascript" Javascript dialect spoken on Java, or 
the second sequel in the zombie series inwhich 
Javas's crypt on Tatooine, spawns millions of ravenous 
enterprise applications that supress the rebellion's ability to use Node.

Example 6: return string from javascript function

<script>
function showName() {
  var result;
  result = addString('Hello', ' World');
  document.write (result );
}

// in below we will check how to return string from function
function addString(fName, lName) {
  var val;
  val = fName + lName;
  return val;  // returning string from function
}
</script>
<input type = "button" onclick = "showName()" value = "Result">
  
/*
I hope it will help you.
Namaste
Stay Home Stay Safe
*/

Tags: