Find the word definition

Wiktionary
while loop

n. (context programming English) A section of computer code in which an instruction or group of instructions is executed only while a certain condition continues to be met.

Wikipedia
While loop

In most computer programming languages, a while loop is a control flow statement that allows code to be executed repeatedly based on a given boolean condition. The while loop can be thought of as a repeating if statement.