JavaScript split string at index code example
Example 1: js split at index
const splitAt = (index: number) => (x: string) => [x.slice(0, index), x.slice(index)]
Example 2: js split string at index
"How are you?".slice(8, 11);
/*Output: you*/
Example 3: split array by character javascript
s.split("");