Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7715405
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T02:22:36+00:00 2026-06-01T02:22:36+00:00

In Javascript, I have 2 arrays of 15 string elements, each of 0 to

  • 0

In Javascript, I have 2 arrays of 15 string elements, each of 0 to 17 characters.

How can I tell if one of the values of the first of these two arrays has a value equal to one of the values of the second array?

Example:

var array1 = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o'];
var array2 = ['z','z','z','z','z','z','z','z','z','z','z','z','z','o','z'];
myFunction(array1,array2); // returns false

Example 2:

var array1 = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','s'];
var array2 = ['z','z','z','z','z','z','z','z','z','z','z','z','z','o','z'];
myFunction(array1,array2); // returns true
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T02:22:37+00:00Added an answer on June 1, 2026 at 2:22 am

    Eric J.’s suggestion of an intersection is probably most elegant way to approach the problem.

    A straightforward translation of what you’re asking could work like this:

    function containsAny(array1, array2) {
      for (var i=0; i<array1.length; i++) {
          for (var j=0; j<array2.length; j++) {
              if (array1[i] == array2[j]) return true;
          }
      }
      return false;
    }
    
    var array1 = ['a','b','c'];
    var array2 = ['1','2','3'];
    var array3 = ['a','b','2'];
    
    containsAny(array1, array2); // returns false
    containsAny(array2, array3); // returns true 
    containsAny(array1, array3); // returns true
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

if I have a large javascript string array that has over 10,000 elements, how
I have two JavaScript arrays: var array1 = [Vijendra,Singh]; var array2 = [Singh, Shakya];
I have some Javascript code that creates 2 arrays: One for Product Category and
I have a one-dimensional array of strings in JavaScript that I'd like to turn
I have been playing with javascript arrays and I have run into, what I
I have a class that stores paths to CSS and Javascript files in arrays.
I have an array that contains 10 elements, each element contains . How do
I have to send a two-dimensional JavaScript Array to a PHP page. Indeed, I'm
which one of the 2 have the best performance? In javascript I was heard
I have an array of strings in Javascript like `var elements = [string1, string2];

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.