diff --git a/08_Day_Objects/08_day_objects.md b/08_Day_Objects/08_day_objects.md index 88bd647..de91f2f 100644 --- a/08_Day_Objects/08_day_objects.md +++ b/08_Day_Objects/08_day_objects.md @@ -368,7 +368,7 @@ const person = { city: 'Helsinki' }, getPersonInfo: function() { - return `I am ${this.firstName} and I live in ${city}, ${this.country}. I am ${this.age}.` + return `I am ${this.firstName} and I live in ${this.city}, ${this.country}. I am ${this.age}.` } }