From 8ee9ea33ef00bb49ce8d905b2d50f088775cd749 Mon Sep 17 00:00:00 2001 From: Kashaf Ahmed Date: Mon, 1 Sep 2025 09:54:26 +0530 Subject: [PATCH] fix(curriculum): correct object property syntax in working with objects lesson (#62000) --- .../lecture-working-with-objects/6732b76c03f7d825c7fc74ee.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-working-with-objects/6732b76c03f7d825c7fc74ee.md b/curriculum/challenges/english/blocks/lecture-working-with-objects/6732b76c03f7d825c7fc74ee.md index 5398c801da9..1753f3eb157 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-objects/6732b76c03f7d825c7fc74ee.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-objects/6732b76c03f7d825c7fc74ee.md @@ -19,7 +19,7 @@ console.log(person.name); // "Alice" console.log(person.job); // undefined ``` -In this example, `person.name exists`, so it logs `Alice`. But `person.job` doesn't exist, so it gives us `undefined`. +In this example, `person.name` exists, so it logs `Alice`. But `person.job` doesn't exist, so it gives us `undefined`. Now, let's say we want to access a property of an object that might not exist: