Js ADD LIST code example
Example 1: javas script add list
// initialize array
var arr = [
"Hi",
"Hello",
"Bonjour"
];
// append new value to the array
arr.push("Osamah");
console.log(arr);
Example 2: js add item to array
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Example 3: javascript append array to end of array
const new_array = old_array.concat([value1[, value2[, ...[, valueN]]]])
Example 4: how to add list in javascript
list=["elements"]#add elements by seperating with comma