make number into array code example
Example 1: number to array javascript
const n = 123456;
Array.from(n.toString()).map(Number);
// [1, 2, 3, 4, 5, 6]
Example 2: integer to array javascript
Array.from(String(12345), Number);
const n = 123456;
Array.from(n.toString()).map(Number);
// [1, 2, 3, 4, 5, 6]
Array.from(String(12345), Number);