I have thought this would points to the object person but it actually points to an empty object. Can anyone explain?
var person = {
name: 'James',
birthYear: '1991',
getAge: () => new Date().getFullYear() - this.birthYear // this points to an empty object here. test in nodejs.
}