Array.prototype._forEach = function(fn) {
// forEach
};
function Person(age) {
this.age = age;
[3,5,10]._forEach(function(it){
console.log(`${it} year later I"m ${this.age + it} year old`);
});
}
let mike = new Person(12);
// 3 year later I"m 15 year old
// 5 year later I"m 17 year old
// 10 year later I"m 22 year old