“Setel elemen di indeks array javascript dan buat array baru” Kode Jawaban

JavaScript dorongan dalam indeks tertentu

arr.splice(index, 0, item);
//explanation:
inserts "item" at the specified "index",
deleting 0 other items before it
Dark Dotterel

Setel elemen di indeks array javascript dan buat array baru

const items = [1, 2, 3, 4, 5]

const insert = (arr, index, newItem) => [
  // part of the array before the specified index
  ...arr.slice(0, index),
  // inserted item
  newItem,
  // part of the array after the specified index
  ...arr.slice(index)
]

const result = insert(items, 1, 10)

console.log(result)
// [1, 10, 2, 3, 4, 5]
Grotesque Gannet

Jawaban yang mirip dengan “Setel elemen di indeks array javascript dan buat array baru”

Pertanyaan yang mirip dengan “Setel elemen di indeks array javascript dan buat array baru”

Lebih banyak jawaban terkait untuk “Setel elemen di indeks array javascript dan buat array baru” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya