timbrown2009
Programmer
Hi everyone,
I'm new to this forum and just wondering if someone could give me a hand quickly. I have this piece of code that I want to be able to search for names in an array and if it finds them then it matches them.
e.g. The code below should find 2 matches.But for some reason I can't get it to work :-(
Hope someone can help. Thanks
===================================================
I'm new to this forum and just wondering if someone could give me a hand quickly. I have this piece of code that I want to be able to search for names in an array and if it finds them then it matches them.
e.g. The code below should find 2 matches.But for some reason I can't get it to work :-(
Hope someone can help. Thanks
===================================================
Code:
name = [Simon, Jim,Mark,Ryan];
stored_names = [Jim,Simon,James,Simon,Tim];
var match_checker = 0;
for (var count_index = 0; count_index < name.length; count_index = count_index ++)
{
if (name[count_index] == stored_names)
{
match_checker = match_checker + 1;
}
document.write (match_checker); //display numb of matches
}
}