Math.abs()
to strip the number's sign....
) to build an array.Array.prototype.map()
and parseInt()
to transform each value to an integer.const digitize = n => [...`${Math.abs(n)}`].map(i => parseInt(i));
digitize(123); // [1, 2, 3]
digitize(-123); // [1, 2, 3]
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️