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

Popular posts from this blog

angularjs - Redirect to a new template in angular js -

Oracle SQL. How to select specific IDs where value of columns specify criteria? -

Desktop Launcher for Python Script Starts Program in Wrong Path (Linux) -