freeCodeCamp/guide/portuguese/certifications/javascript-algorithms-and-d.../basic-javascript/manipulate-arrays-with-push/index.md

315 B

title localeTitle
Manipulate Arrays With push() Manipular matrizes com push ()

Manipular matrizes com push ()

O método push() permite acrescentar (adicionar ao final) um elemento a um array. Igual a…

var arr = [1, 2, 3, 4]; 
 arr.push(5); // Now, the array is [1, 2, 3, 4, 5]