Contact: aviboots(AT)netvision.net.il
41,157 questions
53,647 answers
573 users
const arr = ["javascript", "php", "c++", "python"]; arr.shift(); arr.forEach(function(item, index, array) { console.log(item + " " + index); }); console.log(arr); /* run: "php 0" "c++ 1" "python 2" ["php", "c++", "python"] */