i need to determine if a value exists in an array using javascript.
I am using the following function:
Array.prototype.contains = function(obj) {
var i = this.length;
while (i--) {
if (this[i] == obj) {
return true;
}
}
return false;
}
The above function always returns false.
The array values and the function call is as below
arrValues = ["Sam","Great", "Sample", "High"]
alert(arrValues.contains("Sam"));
Please suggest what to do
===comparison instead of just==. – Georg Schölly Jul 25 '09 at 8:45Finally its worked. its due to improper trim of the comparing value. there was some space in the comparing value(A comment from the asker, to the accepted answer.) – ANeves Oct 1 '12 at 9:09