Answers for "split intiger javascript"

5

split the numbers js

var num = 123456;
var digits = num.toString().split('').map(iNum => parseInt(iNum, 10));
console.log(digits);
Posted by: Guest on February-29-2020
0

split string into int array javascript

const numericList = elementText.split(',').map(Number);
Posted by: Guest on October-18-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language