+ 3
Removing items from an Array in JavaScript
How would one remove an item from an Array in JavaScript?
4 Respuestas
+ 3
With splice
array.splice(array.indexOf("item"), 1);
Associative array or object
delete array["key"];
+ 6
You can use pop() or shift() to remove elements (pop() removes the last element while shift() removes the first one)
To remove an element from a given position, slice() is usually used, although there are other ways. Here you have more information:
https://www.w3schools.com/js/js_array_methods.asp
+ 3
thank you so much!
+ 3
I like the:
delete name[index]
the best:)