Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 210 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 210 Bytes

JavaScript - While loop

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

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