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