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.
17 lines
375 B
17 lines
375 B
(function () {
|
|
'use strict';
|
|
|
|
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 );
|
|
|
|
}());
|