how to append elemnt to array javascrit code example
Example 1: javascript append element to array
var colors= ["red","blue"];
colors.push("yellow");
Example 2: nodejs add element to array
var array = [];
array.push(element)
console.log(array);