Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 189 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 189 Bytes

JavaScript - For loop

For loop is used to traverse the array, strings etc...

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