Define Ranges Array
Problem
You want to define a range in an array.
Solution
There are two ways to define a range of array elements in CoffeeScript.
We can also reverse the range of element by writing it this way.
Discussion
Inclusive ranges are defined by the ‘..’ operator and include the last value.
Exclusive ranges are defined by ‘…’, and always omit the last value.