javascript - alert(new Boolean(false)) vs console.log(new Boolean(false)) -
i wonder why alert(new boolean(false))
prints false instead of printing object new boolean should return object. works should work if use console.log(new boolean(false))
alert()
displays .tostring()
value of argument passed it.
the tostring()
value of boolean
object either true
or false
.
Comments
Post a Comment