please, I have a doub Why with arrow function inside in a object doesn't work? How we do to can make it works with arrow function?
let person = {
  name: "Homer Simpson",
  birdYear: 2000,
  getAge: function() { // WORKS!
    return 2020 - this.birdYear
  },
  getAgeWithArrowF: () => { // Doesn't works
    return 2020 - this.birdYear // using person.birdYear wrks but i need with (this.birdYear)
    // cant reach birdYear =(
  }
};
// The call
console.log(person.getAge()); // 2020
console.log(person.getAgeWithArrowF()); // NaNTHANKS!
 
    