mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
329 B
12 lines
329 B
for ( let i = 0; i < 10; i += 1 ) console.log( i );
|
|
for ( const letter of array ) console.log( letter );
|
|
for ( const index in array ) console.log( index );
|
|
|
|
let i;
|
|
for ( i = 0; i < 10; i += 1 ) console.log( i );
|
|
|
|
let letter;
|
|
for ( letter of array ) console.log( letter );
|
|
|
|
let index;
|
|
for ( index in array ) console.log( index );
|
|
|