Answers for "what does return do in javascript"

6

return statement javascript

function test(arg){
    return arg;
}
Posted by: Guest on April-20-2020
1

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
*/
Posted by: Guest on June-02-2020
0

what does return do in javascript

function add(a, b) {
  return a + b; //Return stops the execution of this function
}

var sum = add(5, 24); //The value that was returned got but inside the variable sum
Posted by: Guest on May-20-2020
0

return statement in javascript

// --- The following return statements all break the function execution: ---

return;
return true;
return false;
return x;
return x + y / 3;
Posted by: Guest on January-06-2021

Code answers related to "what does return do in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language