Contact: aviboots(AT)netvision.net.il
41,445 questions
53,992 answers
573 users
const array = ["javascript", "php", "ruby", "c++"]; const index = 5; if (array[index] !== undefined) { console.log("index: " + index + " exists"); } else { console.log("index: " + index + " not exists"); } /* run: "index: 5 not exists" */