Boolean Type

A Boolean has a value of true or false.

while(true) {

}

All undefined values are treated as false Boolean values when used in the context of a condition. You can check if a value is defined by using the value in the if() condition as in

if(parameter['start_time']) {

  // do something

}

<< Number Type © 1996-2013 InetSoft Technology Corporation (v11.4) String Type >>