Takes the last n elements from array.
n
Input array
Number of elements
Array of last n elements
takeRight([1,2,3], 2); // [2,3] Copy
takeRight([1,2,3], 2); // [2,3]
1.2.0
Takes the last
n
elements from array.