JS Truthiness
Posted by Sam Clearman
Jun 08 2010
'0' && ('0' == false)
// true
We’ll just have to agree to disagree, javascript.
{: .space}
Update: this is what I mean by “truthy” and “falsy”:
function truthy(x) { return !!x; };
function falsy(x) { return !x; };
Tagged in
Contact Us
We'd love to hear from you. Get in touch!