Echo JS 0.11.0

<~>

timruffles 3003 days ago. link 2 points
That `Array.apply(null, { length: n })` trick is cunning!
synaestheory 3003 days ago. link 1 point
Extend this to create any int range by wrapping it like so... 

`const range = (min, max) => Array.apply(null,{length:max - min + 1}).map((val,i) => min + i)`


Excellent usage of Array.apply