I saw this construction in order to get the browser viewport width:
function () { return window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth; }
I understand the browser quirks involved. What I don't understand is why ||
returns the value. So I tried this alert(undefined || 0 || 3);
and sure enough, it alerts 3
. I find this bizarre, because I expect true
or false
. Could anyone explain what's going on?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…