how to add the elements of an array code example
Example: how to add to an array
var ar = ['one', 'two', 'three'];
ar[3] = 'four'; // add new element to ar
var ar = ['one', 'two', 'three'];
ar[3] = 'four'; // add new element to ar