Loops continuously until the expression inside () are not true. Useful for creating your own loops, but make sure to keep track of some variable you can use to stop the while loop if that is your intent.
var = 0; while(var < 200){ //do something repetitive 200 times var++; }