Is there a way to accomplish this specific transformation?
["a","b","c","d","e"] // => ["c", "d", "e"]
I initially thought that using the slice
method could work, however..
["a","b","c","d","e"].slice(2,-1) // [ 'c', 'd' ]
["a","b","c","d","e"].slice(2,0) // []