mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-13 00:01:18 -05:00
444 B
444 B
title, localeTitle
| title | localeTitle |
|---|---|
| Manipulate Arrays With push() | Манипулировать массивами С помощью push () |
Манипулировать массивами С помощью push ()
Метод push() позволяет добавить (добавить к концу) элемент в массив. Вот так…
var arr = [1, 2, 3, 4];
arr.push(5); // Now, the array is [1, 2, 3, 4, 5]