add items inside an array in js code example
Example 1: javascript append element to array
// initialize array
var arr = [
"Hi",
"Hello",
"Bonjour"
];
// append new value to the array
arr.push("Hola");
console.log(arr);
Example 2: js push array
array.push(element_to_push);