return false the same as return?

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

Is

return false 

the same as:

return
8条回答
  •  醉话见心
    2020-12-01 04:11

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

提交回复
热议问题