Is
return false
the same as:
return
No. They are not the same. Returning false from a function returns the boolean false, where a void return will return undefined.
false
undefined