to add string in array javascript code example
Example 1: js array add element
array.push(element)
Example 2: append array js
var colors= ["red","blue"];
colors.push("yellow"); //["red","blue","yellow"]
array.push(element)
var colors= ["red","blue"];
colors.push("yellow"); //["red","blue","yellow"]