What is the difference between:
function bla1(x){console.log(x)}
and
function bla(x){return console.log(x)}
I
If you just add return; in the function. It stops the execution of the function.
return;