What's the point of the Boolean object?

前端 未结 9 1051
遥遥无期
遥遥无期 2020-12-09 15:28

I am reading through the Mozilla Manual on JavaScript, and I come to this point in my reading, Boolean object. I can\'t see a single use for them. What\'s their point? Why w

9条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-09 15:49

    You can coerce a true or false from any value with return Boolean(something), but it's shorter to write return !!something, which forces a true or false as well.

提交回复
热议问题