oktw says to #ysitd<petjelinux>: // Create an array. var elements = ["abc", "def", 123, 456]; // Call the reduce method, which calls the callback function // for each array element. var result = elements.reduce(appendCurrent); document.write(result); // Output: // abc::def::123::456at Wed, Jan 6, 2016 6:40 PM