mendorong ke array
array = ["hello"]
array.push("world");
console.log(array);
//output =>
["hello", "world"]
array = ["hello"]
array.push("world");
console.log(array);
//output =>
["hello", "world"]
array.push(element)
array = ["hello"]
array.push("world");
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"]
let items = [1, 2, 3]
items.push(4); // items = [1, 2, 3, 4]
var array = [];
var element = "anything you want in the array";
array.push(element); // array = [ "anything you want in the array" ]