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
Post a Comment