js range
Array.apply( null, { length: 6 } ).map( Function.call, Number );
// es6
Array.from( new Array( 6 ), ( v, i ) => i ); // [ 0, 1, 2, 3, 4, 5 ]
Array.from( new Array( 6 ), ( v, i ) => ++i ); // [ 1, 2, 3, 4, 5, 6 ]
Array.from( Array( 6 ).keys( ) )
Written by Bruce Lim
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Javascript
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#