return false the same as return?

前端 未结 8 1618
走了就别回头了
走了就别回头了 2020-12-01 03:33

Is

return false 

the same as:

return
8条回答
  •  离开以前
    2020-12-01 03:59

    Its undefined

    console.log((function(){return ;})())
    

    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.

提交回复
热议问题