array push to code example
Example 1: js array add element
array.push(element)
Example 2: push array javascript
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"]
Example 3: js array push
const arr = ["foo", "bar"];
arr.push('baz'); // 3
arr; // ["foo", "bar", "baz"]
Example 4: javascript array push
var fruits = [ "Orange", "Apple", "Mango"];
fruits.push("Banana");