i have a two arrays.
 var a = ["a","b","c","d"];
 var b = ["c","d","f","k"];
These are my two arrays.Now i need to check any single matching values in two arrays.it should break after finding single match value.
My expect result was c and d matches.
 
     
     
     
     
    