質問編集履歴
1
for分の中にreturnを追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -34,7 +34,7 @@
|
|
34
34
|
|
35
35
|
for(i=0; i<array.length; i++){
|
36
36
|
|
37
|
-
array[i].indexOf(str);
|
37
|
+
return array[i].indexOf(str);
|
38
38
|
|
39
39
|
}
|
40
40
|
|