const numToSeparate = 12345; const arrayOfDigits = Array.from(String(numToSeparate), Number); console.log(arrayOfDigits); //[1,2,3,4,5]