Sobes.tech
Middle+

const user = { age: 18, filterAges: function(ages) { return ages.filter(function(age) { return age === this.age; }); } } console.log(user.filterAges([11, 15, 17, 18])) Explain why the code above does not return the expected result and how to fix it.