Herly

Results 1 comments of Herly

``` function reverse(num, i = 0, acc = '') { if (typeof num == 'number') { num += ''; i = num.length - 1; } if (i < 0) {...