Carefull with things like Array.prototype.forEach with built-in functions. forEach passes a asecond argument for the position within the array, this can have unexpected consequences, such as if you're passing parseInt, or another function that optionally accepts a second parameter.
An anonymous lambda is often the best option.