js make array from number 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: number to array js
const arrayOfDigits = numToSeparate.toString().split("");
const n = 123456;
Array.from(n.toString()).map(Number);
// [1, 2, 3, 4, 5, 6]
const arrayOfDigits = numToSeparate.toString().split("");