Contact: aviboots(AT)netvision.net.il
39,880 questions
51,806 answers
573 users
const array = ["node.js", "php", "ruby", "c++"]; const index = 6; if (array[index] !== undefined) { console.log("index: " + index + " exists"); } else { console.log("index: " + index + " not exists"); } /* run: index: 6 not exists */