LanX!: JS Typprobleme

Beitrag lesen

Hi Struppi,

short circuit gibts ja auch perl

----https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Operators/Logical_Operators
Logical AND (&&)
expr1 && expr2
Returns expr1 if it can be converted
to false; otherwise, returns expr2. Thus, when used with Boolean values, && returns true if both operands are true; otherwise, returns false.
----

aber jetzt kann ich noch mehr schätzen, dass in perl der string "0" false ist!

perl -e 'print !!("0"&&"1")'  

ist false

javascript:alert(!!("0"&&"1"))  

ist true

Faszinierend!

Danke
 Rolf