JavaScript menambahkan elemen ke array
var colors= ["red","blue"];
colors.push("yellow");
Friendly Hawk
var colors= ["red","blue"];
colors.push("yellow");
array.push(element)
var fruits = ["222", "vvvv", "eee", "eeee"];
fruits.push("Kiwi");
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"]
const arr = [1, 2, 3, 4];
arr.push(5);
console.log(arr); // [1, 2, 3, 4, 5]
// another way
let arr = [1, 2, 3, 4];
arr = [...arr, 5];
console.log(arr); // [1, 2, 3, 4, 5]
array.push("hello");