add to an array javascript ways code example
Example 1: javascript append to array
var colors=["red","white"];
colors.push("blue");//append 'blue' to colors
Example 2: how to add to an array
var ar = ['one', 'two', 'three'];
ar[3] = 'four'; // add new element to ar