JavaScript por Radu TM • June 16, 2022
var myArray = [1, 2, 3]; myArray.push(4); console.log(myArray); //Vai retornar: [1, 2, 3, 4]
0
24.035