-
Completed at: 2023-07-10T03:46:23.420Z
-
Completed languages: javascript
-
Tags: Arrays, Fundamentals
-
Rank: 8 kyu
Given a random non-negative number, you have to return the digits of this number within an array in reverse order.
35231 => [1,3,2,5,3]
0 => [0]