pushing element in array in javascript

JavaScript
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" ]array = ["hello"]
array.push("world");
Source

Also in JavaScript: