“Hapus Nilai Array dengan Indeks JS” Kode Jawaban

JavaScript Hapus dari array dengan indeks

//Remove specific value by index
array.splice(index, 1);
RaFiNhA90

array hapus indeks dari array

const array = [2, 5, 9];

//Get index of the number 5
const index = array.indexOf(5);
//Only splice if the index exists
if (index > -1) {
  //Splice the array
  array.splice(index, 1);
}

//array = [2, 9]
console.log(array); 
RWL_Dittrich

Hapus item di indeks di array javascript

// remove element at certain index without changing original
let arr = [0,1,2,3,4,5]
let newArr = [...arr]
newArr.splice(1,1)//remove 1 element from index 1
console.log(arr) // [0,1,2,3,4,5]
console.log(newArr)// [0,2,3,4,5]
Yuki

Hapus Nilai Array dengan Indeks JS

var value = 3
var arr = [1, 2, 3, 4, 5, 3]
arr = arr.filter(function(item) {
    return item !== value
})
console.log(arr)
// [ 1, 2, 4, 5 ]
Homely Hamerkop

Jawaban yang mirip dengan “Hapus Nilai Array dengan Indeks JS”

Pertanyaan yang mirip dengan “Hapus Nilai Array dengan Indeks JS”

Lebih banyak jawaban terkait untuk “Hapus Nilai Array dengan Indeks JS” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya