
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Find Only Even or Odd Number in a String of Space-Separated Numbers in JavaScript
Problem
We are required to write a JavaScript function that takes in a string that contains numbers separated by spaces.
The string either contains all odd numbers and only one even number or all even numbers and only one odd number. Our function should return that one different number from the string.
Example
Following is the code −
const str = '2 4 7 8 10'; const findDifferent = (str = '') => { const odds = []; const evens = []; const arr = str .split(' ') .map(Number); arr.forEach(num => { if(num % 2 === 0){ evens.push(num); }else{ odds.push(num); }; }); return odds.length === 1 ? odds[0] : evens[0]; }; console.log(findDifferent(str));
Output
Following is the console output −
7
Advertisements