push at the end of array javascript code example
Example 1: add item to list javascript
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Example 2: push array javascript
let array = ["A", "B"];
let variable = "what you want to add";
array.push(variable);
console.log(array);
Example 3: javascript array add end
let yourArray = [1, 2, 3];
yourArray.push(4);
Example 4: javascript append array to end of array
const new_array = old_array.concat([value1[, value2[, ...[, valueN]]]])