From fe02ec406af80d7d96d386c8fc4762ec0221ab8b Mon Sep 17 00:00:00 2001 From: Sanjay Sriram R <39883044+SanjaySriram@users.noreply.github.com> Date: Sun, 28 Dec 2025 16:51:32 +0530 Subject: [PATCH] Fix typo in object literals section link fix - #object_literals Link in course does not redirect to Object literals section in the page but just links to the Grammar_and_types page. --- src/content/1/en/part1b.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/1/en/part1b.md b/src/content/1/en/part1b.md index e6003b22435..754ed4e1162 100644 --- a/src/content/1/en/part1b.md +++ b/src/content/1/en/part1b.md @@ -126,7 +126,7 @@ Above, the variable _first_ is assigned the first integer of the array and the v ### Objects -There are a few different ways of defining objects in JavaScript. One very common method is using [object literals](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Grammar_and_types#Object_literals), which happens by listing its properties within braces: +There are a few different ways of defining objects in JavaScript. One very common method is using [object literals](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Grammar_and_types#object_literals), which happens by listing its properties within braces: ```js const object1 = {