VertitimeX Technologies

Swift While Loop.

Swift while loop is used to run a specific code until a certain condition is met. The syntax of while loop is:
    while (condition){
    // body of loop
    }