Answers for "how to split number string into multiple parts in js"

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

javascript split multiple values

function splitMulti(str, tokens){
        var tempChar = tokens[0]; // We can use the first token as a temporary join character
        for(var i = 1; i < tokens.length; i++){
            str = str.split(tokens[i]).join(tempChar);
        }
        str = str.split(tempChar);
        return str;
}
Posted by: Guest on March-09-2021

Code answers related to "how to split number string into multiple parts in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language