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.

20 lines
566 B

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory() :
typeof define === 'function' && define.amd ? define(factory) :
(factory());
}(this, (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 );
})));