“Usuń element według pozycji indeksu” Kod odpowiedzi

Usuń elementy z pozycji indeksu

let vegetables = ['Cabbage', 'Turnip', 'Radish', 'Carrot']
console.log(vegetables)
// ["Cabbage", "Turnip", "Radish", "Carrot"]

let pos = 1
let n = 2

let removedItems = vegetables.splice(pos, n)
// this is how to remove items, n defines the number of items to be removed,
// starting at the index position specified by pos and progressing toward the end of array.

console.log(vegetables)
// ["Cabbage", "Carrot"] (the original array is changed)

console.log(removedItems)
// ["Turnip", "Radish"]
Ronnie

Usuń element według pozycji indeksu

let removedItem = fruits.splice(pos, 1) // this is how to remove an item

// ["Strawberry", "Mango"]
Ronnie

Odpowiedzi podobne do “Usuń element według pozycji indeksu”

Pytania podobne do “Usuń element według pozycji indeksu”

Więcej pokrewnych odpowiedzi na “Usuń element według pozycji indeksu” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu