diff --git a/lodash.js b/lodash.js index fc4f9ad9d..e87d9bebe 100644 --- a/lodash.js +++ b/lodash.js @@ -3434,6 +3434,10 @@ * (value, index|key, collection). Callbacks may exit iteration early by * explicitly returning `false`. * + * Note: As with other "Collections" methods, objects with a `length` property + * are iterated like arrays. To avoid this behavior `_.forIn` or `_.forOwn` + * may be used for object iteration. + * * @static * @memberOf _ * @alias each