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
- A predicate is a function that returns a boolean value.
- Control flow
[edit] External Links
- Conditional (programming) on Wikipedia
