In JavaScript, you can remove a specific item from an array using various approaches.
This guide provides a detailed explanation of different methods to remove an item from an array in JavaScript, along with code examples.
Using the splice() Method
The splice()
method is a versatile approach to remove elements from an array by specifying the index and the number of items to be removed.
Example 1: Removing a single item from an array:
let fruits = ["apple", "banana", "orange", "mango"];
fruits.splice(2, 1); // Remove the item at index 2
console.log(fruits); // Output: ["apple", "banana", "mango"]
Example 2: Removing multiple items from an array:
let numbers = [10, 20, 30, 40, 50];
numbers.splice(1, 3); // Remove 3 items starting from index 1
console.log(numbers); // Output: [10, 50]
Using the filter() Method
The filter()
method creates a new array by filtering out elements based on a provided condition. You can use it to remove specific items by filtering them out of the original array.
Example:
let colors = ["red", "blue", "green", "yellow"];
let filteredColors = colors.filter((color) => color !== "green");
console.log(filteredColors); // Output: ["red", "blue", "yellow"]
Using the slice() and concat() Methods
The slice()
method can extract a portion of an array, and the concat()
method can combine arrays. By extracting the items before and after the specific item, you can remove it from the array.
Example:
let animals = ["dog", "cat", "lion", "tiger"];
let indexToRemove = 2;
let removedAnimal = animals.slice(0, indexToRemove).concat(animals.slice(indexToRemove + 1));
console.log(removedAnimal); // Output: ["dog", "cat", "tiger"]
Using the indexOf() and splice() Methods
The indexOf()
method can be used to find the index of a specific item in the array. Once you have the index, you can use the splice()
method to remove that item.
Example:
let names = ["Alice", "Bob", "Charlie", "David"];
let itemToRemove = "Charlie";
let index = names.indexOf(itemToRemove);
if (index !== -1) {
names.splice(index, 1);
}
console.log(names); // Output: ["Alice", "Bob", "David"]
How to Remove an Element by Value in Javascript?
To remove an element by value in JavaScript, you can use various array methods. Here are a few approaches to achieve this:
Using the filter()
method
let array = [10, 20, 30, 40, 50];
let valueToRemove = 30;
let filteredArray = array.filter((element) => element !== valueToRemove);
console.log(filteredArray); // Output: [10, 20, 40, 50]
The filter()
method creates a new array by filtering out elements that do not match the specified value.
Using the splice()
method
let array = [10, 20, 30, 40, 50];
let valueToRemove = 30;
let index = array.indexOf(valueToRemove);
if (index !== -1) {
array.splice(index, 1);
}
console.log(array); // Output: [10, 20, 40, 50]
The splice()
method removes the element at the specified index from the array.
Using a for
loop
let array = [10, 20, 30, 40, 50];
let valueToRemove = 30;
for (let i = 0; i < array.length; i++) {
if (array[i] === valueToRemove) {
array.splice(i, 1);
break; // Assuming there is only one occurrence of the value
}
}
console.log(array); // Output: [10, 20, 40, 50]
This approach iterates through the array and removes the element when a match is found.
Using the pop()
method
let array = [10, 20, 30, 40, 50];
let valueToRemove = 30;
let index = array.indexOf(valueToRemove);
if (index !== -1) {
array[index] = array[array.length - 1];
array.pop();
}
console.log(array); // Output: [10, 20, 50]
In this method, the element to remove is replaced with the last element of the array, and then the last element is popped off.
These methods provide different ways to remove an element by value in JavaScript arrays.
Choose the method that best suits your requirements based on factors such as mutability, array size, and the need for preserving the original array.
How to Delete Elements in Javascript?
To delete elements in JavaScript, you have several options depending on the specific use case. Here are different examples of deleting elements:
- Using the
delete
keyword:
Thedelete
keyword is used to delete a specific element by its index or property name. However, note that usingdelete
does not reindex the array, leaving an empty slot in the array.
Example 1: Deleting an element by index in an array:
let array = [10, 20, 30, 40, 50];
delete array[2];
console.log(array); // Output: [10, 20, <empty>, 40, 50]
Example 2: Deleting a property from an object:
let obj = { name: "John", age: 25, city: "London" };
delete obj.age;
console.log(obj); // Output: { name: "John", city: "London" }
- Using the
splice()
method:
Thesplice()
method can be used to remove elements from an array by specifying the index and the number of elements to be removed. It also reindexes the remaining elements.
Example: Deleting elements using splice():
let array = [10, 20, 30, 40, 50];
array.splice(1, 2); // Remove 2 elements starting from index 1
console.log(array); // Output: [10, 40, 50]
- Using the
pop()
orshift()
method:
Thepop()
method removes the last element from an array, while theshift()
method removes the first element. These methods modify the original array and return the removed element.
Example 1: Deleting the last element using pop()
:
let array = [10, 20, 30, 40, 50];
let removedElement = array.pop();
console.log(array); // Output: [10, 20, 30, 40]
console.log(removedElement); // Output: 50
Example 2: Deleting the first element using shift()
:
let array = [10, 20, 30, 40, 50];
let removedElement = array.shift();
console.log(array); // Output: [20, 30, 40, 50]
console.log(removedElement); // Output: 10
- Using the
filter()
method:
Thefilter()
method creates a new array containing elements that pass a provided condition. It can be used to filter out and remove specific elements from an array.
Example: Deleting elements using filter()
:
let array = [10, 20, 30, 40, 50];
let filteredArray = array.filter((element) => element !== 30);
console.log(filteredArray); // Output: [10, 20, 40, 50]
Remember to choose the appropriate method based on your specific requirements.
Consider factors such as reindexing, preserving the original array, and performance implications when deleting elements in JavaScript.
Common Issues and Considerations While Removing Items from an Array in Javascript
- Mutability: The above methods modify the original array. If you want to preserve the original array, make a copy before applying any removal operation.
- Multiple Occurrences: The provided examples assume that the item to be removed appears only once in the array. If there are multiple occurrences, additional logic is needed to handle those cases.
- Equality Comparison: Be cautious when comparing objects or complex data types. The examples use strict equality (
===
) to match items. Adjust the comparison logic accordingly for your specific scenario. - Performance Considerations: Depending on the size of the array, different methods may have varying performance characteristics. Consider the trade-offs between simplicity and performance when choosing the appropriate approach.
Wrapping Up
Removing a specific item from an array in JavaScript can be achieved using methods such as splice()
, filter()
, slice()
, and concat()
.
Each method offers different advantages and considerations. Choose the method that suits your requirements and consider factors like mutability, multiple occurrences, equality comparison, and performance.
With these techniques at your disposal, you can effectively remove specific items from JavaScript arrays and manipulate your data as needed.

Abhinav worked as a software engineer at numerous startups and large enterprises for over 12 years. He has worked on a variety of projects, from developing software to designing hardware. He is passionate about tinkering with computers and learning new things. He is always looking for new ways to use technology to solve problems and make people’s lives easier. That is the inspiration behind https://foxrunsoftware.net. Abhinav created FoxRunSoftware to address common errors and issues faced by engineers and non-engineers alike!