Considere o código fonte da página HTML abaixo. Quando a pág...
Quando a página for interpretada pelo navegador, ao pressionar o botão Testar, na primeira vez,
Comentários
Veja os comentários dos nossos alunos
pop retira o último elemento da lista
http://www.w3schools.com/jsref/jsref_pop.asp
Questãozinha nojenta.... como decorar todos os métodos de array!??
Method Description
concat() Joins two or more arrays, and returns a copy of the joined arrays
indexOf() Search the array for an element and returns its position
join() Joins all elements of an array into a string
lastIndexOf() Search the array for an element, starting at the end, and returns its position
pop() Removes the last element of an array, and returns that element
push() Adds new elements to the end of an array, and returns the new length
reverse() Reverses the order of the elements in an array
shift() Removes the first element of an array, and returns that element
slice() Selects a part of an array, and returns the new array
sort() Sorts the elements of an array
splice() Adds/Removes elements from an array
toString() Converts an array to a string, and returns the result
unshift() Adds new elements to the beginning of an array, and returns the new length
valueOf() Returns the primitive value of an array
Impossível...
Marcos, POP é uma método tradicional utilizado em pilhas para tirar o último elemento, assim como push coloca o último elemento em uma pilha. Um array pode ser tratado como uma pilha em Javacript. Sabendo isso, como não é uma questão de certo e errado, fica fácil marcar o pop.
A questão é extremamente fácil para quem conhece pilha em estrutura de dados.
Pop : Remove elementos do vetor => O Primeiro elemento que entra no vetor é o ultimo que sai.
Em suma:
Para INSERIR no INÍCIO: UNSHIFT
no FIM: PUSH
Para REMOVER do INÍCIO: SHIFT
do FIM: POP
Espero ter ajudado! :)
Clique para visualizar este comentário
Visualize os comentários desta questão clicando no botão abaixo