Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Shorten simple if statements

...

Instead of:

Do:

var myResult;
if (#var1==1) myResult=true;
else myResult=false;

var myResult = #var1==1 ? true : false;



Shorten assignment operators

...

Note: the following examples assume local variables, if using a StudyTRAX variable precede the variable code with a 3.

...