adding and element to a array javascript code example
Example 1: js add item to array
const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Example 2: javascript append array to end of array
const new_array = old_array.concat([value1[, value2[, ...[, valueN]]]])