Contact: aviboots(AT)netvision.net.il
40,772 questions
53,159 answers
573 users
const arr = ['c', 'node.js', , , null, '', 'c++', false]; if (arr.indexOf(undefined) === -1 && arr.includes(undefined)) { console.log('yes'); } else { console.log("no"); } /* run: yes */
const arr = ['c', 'node.js', , , '', 'c++', undefined]; if (arr.indexOf(undefined) === -1 && arr.includes(undefined)) { console.log('yes'); } else { console.log("no"); } console.log(arr.includes(undefined)); /* run: no true */