how to push array

JavaScript
some_array = ["John", "Sally"];
some_array.push("Mike");

console.log(some_array); //output will be =>
["John", "Sally", "Mike"]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"]array = ["hello"]
array.push("world");

console.log(array);
//output =>
["hello", "world"]var array = [];
var element = "anything you want in the array";
array.push(element); // array = [ "anything you want in the array" ]var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");//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
Source

Also in JavaScript: