Contact: aviboots(AT)netvision.net.il
41,157 questions
53,647 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 */