I need a javascript function that can take in a string and an array, and return true if that string is in the array..
function inArray(str, arr){
...
}
caveat: it can't use any javascript frameworks.
|
I need a javascript function that can take in a string and an array, and return true if that string is in the array..
caveat: it can't use any javascript frameworks.
| ||||
|
feedback
|
|
Something like this?
| |||
feedback
|
|
You could just make an array prototype function ala:
Note the use of '===' instead of '==' you could change that if you need less specific matching... Otherwise [3].hasValue('3') will return false. | |||||||||
feedback
|
|
Take a look at this related question. Here's the code from the top-voted answer.
| |||
|
feedback
|
|
you can use arr.indexOf() | |||
|
feedback
|