split array at index js 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);
Example 3: javascript slice array
const FRUITS = ["Banana", "Orange", "Lemon", "Apple", "Mango"];
var citrus = FRUITS.slice(1, 3);
var fromTheEnd = FRUITS.slice(-3, -1);
Example 4: js slice
const str = 'The quick brown fox jumps over the lazy dog.';
console.log(str.slice(31));
console.log(str.slice(4, 19));
console.log(str.slice(-4));
console.log(str.slice(-9, -5));