Answers for "convert a number to array"

0

convert number to array javascript

const numToSeparate = 12345;

const arrayOfDigits = Array.from(String(numToSeparate), Number);

console.log(arrayOfDigits);   //[1,2,3,4,5]
Posted by: Guest on October-22-2020
2

change number into array in java

String temp = Integer.toString(guess);
int[] newGuess = new int[temp.length()];
for (int i = 0; i < temp.length(); i++)
{
    newGuess[i] = temp.charAt(i) - '0';
}
Posted by: Guest on April-02-2020

Code answers related to "convert a number to array"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language