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
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.