

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Fetch alternative even values from a JavaScript array?
To fetch alternative values, use the array index and check with the following condition −
if(index%2==0) { // code }
The above will display the even values.
Example
Following is the code −
var subjectsName=["MySQL","JavaScript","MongoDB","C","C++","Java"]; for(let index=0;index<subjectsName.length;index++) { if(index%2==0) console.log("Subject name at even position="+subjectsName[index]); }
To run the above program, you need to use the following command −
node fileName.js.
Here, my file name is demo222.js.
Output
The output is as follows −
PS C:\Users\Amit\JavaScript-code> node demo222.js Subject name at even position=MySQL Subject name at even position=MongoDB Subject name at even position=C++
- Related Questions & Answers
- Fetch specific values from array of objects in JavaScript?
- Python - Filter even values from a list
- What is the alternative of BETWEEN clause to fetch values between a range in MySQL?
- Fetch Numbers with Even Number of Digits JavaScript
- Alternative sorting of an array in JavaScript
- MongoDB query to fetch array values
- Finding even length numbers from an array in JavaScript
- MongoDB query to display alternative documents with mapReduce() function and emit even field values
- Fetch Second minimum element from an array without sorting JavaScript
- Fetch values by ignoring a specific one in JavaScript?
- Remove same values from array containing multiple values JavaScript
- Alternative shuffle in JavaScript
- Extract unique values from an array - JavaScript
- How can we fetch alternate even-numbered records from MySQL table?
- Create a record array from a (flat) list of array and fetch specific values based on index in Numpy
Advertisements