Until

(note): current documentation is subject to change.

Until loops take the same condition operators as an if statement..

var alive = true

until alive == false {
	console.log("Still alive!") 
}

The above example will repeat the code inside the until loop until the variable 'alive' is set to false.