how to add item to list javascript code example
Example 1: append array js
var colors= ["red","blue"];
colors.push("yellow"); //["red","blue","yellow"]
Example 2: javascript array push
let animals = ["dog","cat","tiger"];
animals.pop(); // ["dog","cat"]
animals.push("elephant"); // ["dog","cat","elephant"]
Example 3: javascript append array to end of array
const new_array = old_array.concat([value1[, value2[, ...[, valueN]]]])