
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
Check If a Value Exists in an Array and Get the Next Value in JavaScript
We are required to write a JavaScript function that takes in an array of literals as the first argument and a search string as the second argument.
The function should the array for the that search string. If that string exists in the array, we should return its next element from the array, otherwise we should return false.
Example
const arr = ["", "comp", "myval", "view", "1"] const getNext = (value, arr) => { const a = [undefined].concat(arr) const p = a.indexOf(value) + 1; return a[p] || false; } console.log(getNext('comp', arr)); console.log(getNext('foo', arr));
Output
And the output in the console will be −
myval false
Advertisements