Technology
 

Condition

From Programmer's Wiki

a condition (sometimes known as a conditional) is a boolean expression that is used in control structures to make decisions.


Contents

[edit] Example

var new_person = true;

if(new_person){
    print "Hello World";
}


[edit] Loops

in while loops the loop continues until the condition is false. Do while loops are the opposite. They will continue until the condition is true.

[edit] See also

[edit] External Links