We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a83819 commit 5a3acb3Copy full SHA for 5a3acb3
tests/test028.js
@@ -2,5 +2,5 @@
2
var a = [1,2,4,5,7];
3
var b = ["bread","cheese","sandwich"];
4
5
-result = a.indexOf(1) == 0 && a.indexOf(42) < 0
6
- && b.indexOf("cheese")==1 && b.indexOf("eggs") < 0;
+result = a.indexOf(1) == 0 && a.indexOf(5) == 3 && a.indexOf(42) < 0
+ && b.indexOf("cheese")==1 && b.indexOf("sandwich")==2 && b.indexOf("eggs") < 0;
0 commit comments