diff --git a/src/lang/array.js b/src/lang/array.js index 1481dfd..9a2f672 100644 --- a/src/lang/array.js +++ b/src/lang/array.js @@ -360,7 +360,8 @@ Array.from = $A; * the search. * * Returns the index of the first occurrence of `item` within the array, - * or `-1` if `item` doesn't exist in the array. + * or `-1` if `item` doesn't exist in the array. `Array#indexOf` compares + * items using *strict equality* (`===`). * * ### Examples *