In the current 1.4.0-beta.2, this return false: ``` [this.notset, 1, 2].any(function (o) { return true; }) ``` if this.notset is undefined. This works of course: ``` [1, 2].any(function (o) { return true; }) ```