So I see a lot of JavaScript code (have written some myself) that does something like
<script>
function CallSomeFunction()
{
//function body
}
$(document).ready(function () {
callSomeFunction();
return false;
});
and at other times:
callSomeFunction();
return true;
Basically I've never understood the true use of the return true/false after function calls in JavaScript. I've just assumed its some kind of magic I need my functions to run well.
So please I'd like to know why? why do we use return true or return false after calling a JavaScript function?