
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
Finding Index Position of an Array Inside an Array in JavaScript
Suppose, we have an array of arrays like this −
const arr = [ [1,0], [0,1], [0,0] ];
We are required to write a JavaScript function that takes in one such array as the first argument and an array of exactly two Numbers as the second argument.
Our function should check whether or not the array given by second input exists in the original array of arrays or not.
Example
const arr = [ [1,0], [0,1], [0,0] ]; const sub = [0, 0]; const matchEvery = (arr, ind, sub) => arr[ind].every((el, i) => el == sub[i]); const searchForArray = (arr = [], sub = []) => { let ind = -1; let { length: len } = arr; while (len--) { if (arr[len].length === sub.length && matchEvery(arr, len, sub)){ ind = len; break; }; }; return ind; }; console.log(searchForArray(arr, sub));
Output
And the output in the console will be −
2
Advertisements