While looking through some code (javascript), I found this piece of code:
also && operator returns the first encountered value of this kind: null, undefined, 0, false, NaN, ""
ex: if
var1 = 33 var2 = 0 var3 = 45 var1 && var2 && var3 returns 0