push in array js code example
Example 1: javascript append element to array
var colors= ["red","blue"];
colors.push("yellow");
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 push array
array.push(element_to_push);
Example 4: javascript array push
var SomeRandomArray = [];
SomeRandomArray.push("Hello, world!");
Example 5: how to push items in array in javascript
let items = [1, 2, 3]
items.push(4); // items = [1, 2, 3, 4]
Example 6: javascript array push
let animals = ["dog","cat","tiger"];
animals.pop(); // ["dog","cat"]
animals.push("elephant"); // ["dog","cat","elephant"]