JavaScript – Como Remover um Elemento de um Array?

No JavaScript muitas vezes desejamos manipular os itens dentro de um Array. Nesse artigo vamos mostrar como remover ou adicionar itens num array usando métodos nativos do JavaScript

JavaScript – Manipulando itens no início ou no fim de um Array

Adicionar ou remover itens no início ou no fim do array é algo simples. As funções pop(), push(), shift() e unshift() podem ser utilizadas para isso.

As duas funções iniciais manipulam itens finais do array, enquanto shift() e unshift()manipulam os elementos iniciais. Abaixo um exemplo.

var arr = [1, 2, 3, 4, 5];
console.log("Original Array..: " + arr);
arr.pop();
console.log("After pop()....: " + arr);
arr.push(8);
console.log("After push()...: " + arr);
arr.shift();
console.log("After shift()..: " + arr);
arr.unshift(7);
console.log("After unshift(): " + arr);

O código acima terá como resultado a seguinte sequência:

Original Array..: 1, 2, 3, 4, 5
After pop()..:  1, 2, 3, 4
After push()..: 1, 2, 3, 4, 8
After shift()..: 2, 3, 4, 8
After unshift()..: 7, 2, 3, 4, 8

JavaScript – Manipulando itens intermediários de um Array

Trabalhar com itens que estão no meio de um array não é tão fácil, mas temos a função splice().  Sua sintaxe é simples e exige os seguintes parâmetros: o array original, a posição inicial, a quantidade de itens que serão afetados, e, se for para adicionar itens, o valor deles.

(Array) arr_original.splice(index, quantity, elem1, ..., elemX);

Os exemplos abaixo mostram como remover dois itens do array, a partir do segundo elemento e como adicionar um novo elemento na 4ª posição.

arr = [1, 2, 3, 4, 5];
arr.splice(2, 2);
// [1, 2, 5]

arr = [1, 2, 3, 4, 5];
arr.splice(3, 0, 6);
// [1, 2, 3, 6, 4, 5]

Importante: A função altera diretamente o array original e retorna um array com os itens que foram afetados — adicionados ou removidos.

Você conhece outras maneiras de fazer esta operação no JavaScript?  Compartilhe seus comentários na seção abaixo!

Caso deseje explorar outras questões, pode conferir nossos vídeos sobre JavaScript. Abaixo estão alguns exemplos:

Você também pode se inscrever em alguns canais que fazem broadcast em JavaScript, como os a seguir:

LearnToProgram

 JDdesign

Outra maneira legal de descobrir mais coisas interessantes sobre JavaScript é acessar nossa página de projetos!

Dr. Michael J. Garbade

I, Dr. Michael J. Garbade is the co-founder of the Education Ecosystem (aka LiveEdu), ex-Amazon, GE, Rebate Networks, Y-combinator. Python, Django, and DevOps Engineer. Serial Entrepreneur. Experienced in raising venture funding. I speak English and German as mother tongues. I have a Masters in Business Administration and Physics, and a Ph.D. in Venture Capital Financing. Currently, I am the Project Lead on the community project -Nationalcoronalvirus Hotline I write subject matter expert technical and business articles in leading blogs like Opensource.com, Dzone.com, Cybrary, Businessinsider, Entrepreneur.com, TechinAsia, Coindesk, and Cointelegraph. I am a frequent speaker and panelist at tech and blockchain conferences around the globe. I serve as a start-up mentor at Axel Springer Accelerator, NY Edtech Accelerator, Seedstars, and Learnlaunch Accelerator. I love hackathons and often serve as a technical judge on hackathon panels.

View Comments

Recent Posts

Win Big with Our Amazon Fire Max 11 & AirPods Pro Giveaway!

We’re thrilled to announce an exciting opportunity for you to win not one but two…

1 month ago

Unleashing Potential: How Education Ecosystem Transforms Learning into Real-World Success

Acquiring practical skills is crucial for career advancement and personal growth. Education Ecosystem stands out…

3 months ago

The Role of Artificial Intelligence in Modern Software Development

Artificial Intelligence (AI) has been making significant strides in various industries, and the software development…

6 months ago

Highest Stable Coin Yields – (W16 – 2024)

Another week to bring you the top yield platforms for three of the most prominent…

7 months ago

LEDU Token OTC Trading

If you hold a large volume of LEDU tokens above 1 million units and wish…

8 months ago

Highest Stable Coin Yields – (W12 – 2024)

It’s another week and like always we have to explore the top yield platforms for…

8 months ago