# While Command
The While command is a loop used to continuously run commands until a condition is false.

```
var count = 1;
while (count < 5){
    log(count);
    var count = count + 1;
};
```