javascript add item to list

JavaScript
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Source

Also in JavaScript: