array push and pop nodejs code example
Example 1: js add item to array
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Example 2: js array pop
var array = ['A', 'B', 'C'];
// removes and returns last element
lastElement = array.pop();