Jak usunąć element w pozycji Givena w JS
const array = [2, 5, 9];
console.log(array);
const index = array.indexOf(5);
array.splice(index, 1);
// array = [2, 9]
console.log(array);
Run code snippet
const array = [2, 5, 9];
console.log(array);
const index = array.indexOf(5);
array.splice(index, 1);
// array = [2, 9]
console.log(array);
Run code snippet