xxxxxxxxxx
[].push('things you wanna push to that array')
xxxxxxxxxx
let array = ["A", "B"];
let variable = "what you want to add";
//Add the variable to the end of the array
array.push(variable);
//===========================
console.log(array);
//output =>
//["A", "B", "what you want to add"]
xxxxxxxxxx
var array = [];
var element = "anything you want in the array";
array.push(element); // array = [ "anything you want in the array" ]
xxxxxxxxxx
//the array comes here
var numbers = [1, 2, 3, 4];
//here you add another number
numbers.push(5);
//or if you want to do it with words
var words = ["one", "two", "three", "four"];
//then you add a word
words.push("five")
//thanks for reading
xxxxxxxxxx
const arr = ["foo", "bar"];
arr.push('baz'); // 3
arr; // ["foo", "bar", "baz"]
xxxxxxxxxx
// JS array .push() method
let items_in_backpack = ['food', 'water', 'flashlight', 'GPS']; // Our starting array
items_in_backpack.push('javascript array push knowledge'); // Adds the <<< string to the array items_in_backpack
// Now the array is:
// ['food', 'water', 'flashlight', 'GPS', 'javascript array push knowledge']
xxxxxxxxxx
var arrayA = [1, 2];
var arrayB = [3, 4];
var newArray = arrayA.concat(arrayB);