how to make functon stop in javascript code example
Example: stop a function javascript
function func() {
if (conditionToStopFunction)
return; //Nothing after return will be executed
console.log("Hello World"); //This will not be executed if 'conditionToStopFunction' is true
}