“bagaimana cara menghapus item tertentu dari array” Kode Jawaban

Hapus elemen tertentu dari array

var colors = ["red","blue","car","green"];
var carIndex = colors.indexOf("car");//get  "car" index
//remove car from the colors array
colors.splice(carIndex, 1); // colors = ["red","blue","green"]
Grepper

cara menghapus elemen tertentu dari array di javascript

var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]
newArr.splice(1,2)
//remove 1 element from index 2
SimTheGreat

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

bagaimana cara menghapus item tertentu dari array

const items = ['a', 'b', 'c', 'd', 'e', 'f']
const i = 2
const filteredItems = items.slice(0, i).concat(items.slice(i + 1, items.length))
// ["a", "b", "d", "e", "f"]
Yawning Yacare

Jawaban yang mirip dengan “bagaimana cara menghapus item tertentu dari array”

Pertanyaan yang mirip dengan “bagaimana cara menghapus item tertentu dari array”

Lebih banyak jawaban terkait untuk “bagaimana cara menghapus item tertentu dari array” di C

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya