Is
return false
the same as:
return
|
|
|
No.
Weak operators in JS make it seem like the might return the same thing, but they return objects of different types. |
|||||
|
|
No, |
|||||||||||||||||||
|
|
No. They are not the same. Returning |
|||
|
|
|
Nope, one returns See this JSFiddle but if you test this without
|
||||
|
|
No, I do not think so. False is usually returned to indicate that the specified action the function is supposed to do has failed. So that the calling function can check if the fucntion succeeded. Return is just a way to manipulate programming flow. |
|||
|
|
|
It's returning |
|||
|
|
|
No. Test it in firebug console (or wherever) -
Note that if you (even implicitly) cast undefined to boolean, such as in if statement, it will evaluate to false. |
|||||||
|
|
Its undefined
And yes in javaScript return is such a powerful stuff if used nicely in patters. You can return all the way to [] array, {} object to functions too. Returning "this" you can go ahead and get implementation of class based objects and prototype inheritance and all. |
|||
|