Skip to content

Instantly share code, notes, and snippets.

@lukin0110
Created November 6, 2015 14:10
Show Gist options
  • Save lukin0110/9b6aff087238c0852409 to your computer and use it in GitHub Desktop.
Save lukin0110/9b6aff087238c0852409 to your computer and use it in GitHub Desktop.
// variant 1
var self = this;
this.nums.forEach(function (v) {
if (v % 5 === 0)
self.fives.push(v);
});
// variant 2 (since ECMAScript 5.1 only)
this.nums.forEach(function (v) {
if (v % 5 === 0)
this.fives.push(v);
}.bind(this));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment