Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 answers
573 users
const arr = ["javascript", "php", "c++", "python"]; arr.push('c#'); arr.forEach(function(item, index, array) { document.write(item + " " + index + "<br />"); }); /* run: javascript 0 php 1 c++ 2 python 3 c# 4 */