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