© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
PikaboyZ
Developer, Programmer, PHP, JS, AngularJS, MongoDB, Wordpress
//es5 var self = this; this.nums.forEach(function (v) { if (v % 5 === 0) self.fives.push(v); }); //es6 this.nums.forEach((v) => { if (v % 5 === 0) this.fives.push(v) })
http://es6-features.org/#Lexicalthis