separate digits in javascript

JavaScript
const n = 123456;
Array.from(n.toString()).map(Number);
// [1, 2, 3, 4, 5, 6]
Source

Also in JavaScript: