Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

156
Views
Get Matched array value in indexOf

I'm beginner of javascript and have a quick question. Please refer to the below codes.

var test1 = [1,2,3],
    test2 = [4,5,6],
    test3 = [7,8,9];

var urlsToMatch = [
  [test1, '/hello'], [test1, '/Bonjour'],
  [test2, '/Ohio'], [test3, '/Nice']
];

current_url = window.location.href;

urlsToMatch.forEach(function(item) {
        var matchedSeq = item[0];
        var matchPattern = item[1];
        if (current_url.indexOf(matchPattern) > -1) { 
           console.log(matchedSeq[0]);
        }
});

In this case, I just wanted to know what values are matched and if statements became true. And I hope get matched 'urlsToMatch' array's key. Hope to get 'test1' or 'test2' or 'test3'. Could you please help me out to grow my skill? :) thanks.

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!