Echo JS 0.11.0

<~>
synaestheory 3013 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

Replies