boolean - javascript, what this condition means? if(display || true){...} -


the display variable optional on actual function, don't understand means || true

what checks condition? if(display || true){...}

if(display || true){ $("#container").html(this.displayreport(this.tabdata, extrainfo || false)); } 

the || logical or operation, means display or true true.

your code means if(true) {...}, , if quite redundant.


Comments

Popular posts from this blog

html - Firefox flex bug applied to buttons? -

html - Missing border-right in select on Firefox -

c# - two queries in same method -