how to remove middle element from array js code example
Example: javascript array remove middle
// example (remove middle element(s) in the array)
let yourArray = ["aaa", "bbb", "ccc", "ddd"];
yourArray.splice(2,1); // yourArray = ["aaa", "bbb", "ddd"]
// syntax:
// .splice(,);