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