Answers for "when to use return js"

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

why we use return method

Return method is for to be able to
continue to work what method retrieves. 
For example if it returns a String.
This means that you can use the returned
value in your code for
further processing.I guess good examples
of such methods are "getters".
Posted by: Guest on January-05-2021

Browse Popular Code Answers by Language