SóProvas


ID
1112965
Banca
FCC
Órgão
AL-PE
Ano
2014
Provas
Disciplina
Programação
Assuntos

Em JavaScript, há vários métodos pré-definidos para manipular valores em arrays. Dois destes métodos permitem adicionar e remover um elemento no final de uma array, respectivamente.

Considere a array a seguir:
var carros = ["Gol", "Palio", "Fiesta", "Onix"];

Para inserir o valor "HB20" no final da array carros e depois removê-lo utiliza-se, respectivamente, as instruções:

Alternativas
Comentários
  • Gabarito "C".

    The push() method adds new items to the end of an array, and returns the new length.
    The pop() method removes the last element of an array, and returns that element.

    Fonte: http://www.w3schools.com/jsref/jsref_obj_array.asp