Bernie
Member since Feb 5, 2017
- Profile: /members/13442-bernie.htm
- Comments: 1
Recent Blog Comments By Bernie
-
Exploring ES6: Upgrade To The Next Version Of JavaScript By Dr. Axel Rauschmayer
Posted on Feb 5, 2017 at 2:23 PM
@Ben, I just tried the 'for-i let' code in the console and got the same output as the 'for-of let' code for ( let i = 1 ; i <= 5 ; i++ ) { setTimeout( () => console.log( "(for-i let) Value:", i ) ); } and got this output: (for-i let) Value: 1 (for-i let) Value: 2 (for-i let) Va... read more »