Create a function that takes a number and returns an array with the digits of the number in reverse order.
reverseArr(1485979) ➞ [9, 7, 9, 5, 8, 4, 1] reverseArr(623478) ➞ [8, 7, 4, 3, 2, 6] reverseArr(12345) ➞ [5, 4, 3, 2, 1]
N/A