string splice in javascript code example
Example 1: string splice
newStr = str.split('');
newStr.splice(2,5);
newStr = newStr.join('');
Example 2: slice javascript string
const str = 'The quick brown fox jumps over the lazy dog.';
console.log(str.slice(31));
console.log(str.slice(4, 19));
Example 3: slice string js
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));
Example 4: splice javascript
let arrDeletedItems = arr.splice(start[, deleteCount[, item1[, item2[, ...]]]])