diff options
| -rw-r--r-- | src/Angular.js | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/src/Angular.js b/src/Angular.js index 11ce5cf5..f30e5a26 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -192,6 +192,9 @@ function isArrayLike(obj) {   * is the value of an object property or an array element and `key` is the object property key or   * array element index. Specifying a `context` for the function is optional.   * + * It is worth nothing that `.forEach` does not iterate over inherited properties because it filters + * using the `hasOwnProperty` method. + *   * Note: this function was previously known as `angular.foreach`.   *     <pre> | 
