Quick actions

cmd+k|ctrl+k

Navigation

Languages

LOOP

Snippet info

Language

JavaScript

Visibility

public

Author

adislamay19

Created

2020-04-24T10:00:28Z

Updated

2020-04-24T10:03:10Z

    for(let i = 0; i < 5; i++) {
        console.log(i);
    }
     
    /* output
    0
    1
    2
    3
    4
    */
INFO