Write a function named extractElementsBetweenPositions
that receives 3 parameters:
numbers
n
m
and returns a new Array containing all elements that have their position between n
and m
(both included).
NOTE: there's no guarantee that n
is lower than m
.
numbers
=n
=m
=