Answers for "string split words with index numbers javascript"

3

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
1

js split at index

const splitAt = (index: number) => (x: string) => [x.slice(0, index), x.slice(index)]
Posted by: Guest on May-19-2021

Code answers related to "string split words with index numbers javascript"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language