Consider the following javascript
var test = ['1', '2', '3'];
In the console, type
test.indexOf('1') > -1;
Result will be true.
Now add the basic Not operator !.
!test.indexOf('1') > -1;
Result is also true, but I expected the result to be false. Why is it true?
