Skip to content

Files

Latest commit

f2cc38a · Jan 23, 2023

History

History

do-while-loop

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jan 23, 2023
Jan 23, 2023

JavaScript - Do While loop

Do while loop is also used to traverse the array, strings etc...

But the condition would be checked only after completing the first iteration.

  • Syntax:
    initializer
    do {
        // statements
        increment
    } while (condition);