Hint
No own this, no arguments object, no new, no prototype
Arrow functions are not just shorter syntax β key behavioral differences:
const obj = {
name: 'Dev',
regular() { console.log(this.name); }, // 'Dev'
arrow: () => console.log(this.name), // undefined
};