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