Convert boolean result into number/integer

前端 未结 18 2089
刺人心
刺人心 2020-12-02 05:21

I have a variable that stores false or true, but I need 0 or 1 instead, respectively. How can I do this?

18条回答
  •  伪装坚强ぢ
    2020-12-02 06:17

    I just came across this shortcut today.

    ~~(true)

    ~~(false)

    People much smarter than I can explain:

    http://james.padolsey.com/javascript/double-bitwise-not/

提交回复
热议问题