understanding where the return keyword goes in javascript code example
Example: return statement in javascript
// --- The following return statements all break the function execution: ---
return;
return true;
return false;
return x;
return x + y / 3;