javascript split string into array by 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*/