How to check if specific index exists in array with Node.js

1 Answer

0 votes
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
       
*/

 



answered Jul 10, 2022 by avibootz

Related questions

2 answers 167 views
2 answers 157 views
1 answer 145 views
1 answer 166 views
2 answers 1,146 views
1 answer 227 views
...