how to add something to an array js code example
Example 1: append array js
var colors= ["red","blue"];
colors.push("yellow"); //["red","blue","yellow"]
Example 2: nodejs add to array
var colors=["red","white"];
colors.push("blue");//append 'blue' to colors