'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; };