function to add an item to an array 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: pushing element in array in javascript
array = ["hello"]
array.push("world");