You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 2 Next »
Instead of:
Do:
var myResult; if (#var1==1) myResult=true; else myResult=false;
var myResult = #var1==1 ? true : false;