Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #return #javascript
ADD COMMENT
Topic
Name
2+2 =