rmeove array element using splce code example

Example 1: remove element from array javascript

let fruit = ['apple', 'banana', 'orange', 'lettuce']; 
// ^^ An example array that needs to have one item removed

fruit.splice(3, 1); // Removes an item in the array using splice() method
// First argument is the index of removal
// Second argument is the amount of items to remove from that index and on

Example 2: remove or replacing element array in javascript

let myFish = ['angel', 'clown', 'mandarin', 'sturgeon']
let removed = myFish.splice(2, 0, 'drum')

// myFish is ["angel", "clown", "drum", "mandarin", "sturgeon"] 

let words: string[] = [
  'What',
  'I',
  'do',
  'create,',
  'I',
  'cannot',
  'not',
  'understand.',
];

let newWords = words.splice(2, 1, 'cannot');
let newWords2 = words.splice(5, 2, 'do not');
//console.log(newWords);
console.log(words.join(' '));

//What I cannot create, I do not understand.