let car = {
make: 'bmw',
model: '745li',
year: 2020,
getPrice: () => {
//perform some calc
return 5000;
},
printDescription: () =>
{
console.log(this.make, this.model) <- undefined with arrow functions
}
};
let car = {
make: 'bmw',
model: '745li',
year: 2020,
getPrice: () => {
//perform some calc
return 5000;
},
printDescription: () =>
{
console.log(this.make, this.model) <- undefined with arrow functions
}
};