From afdbf9913f7f325a175a273c7791ba0f22b5f161 Mon Sep 17 00:00:00 2001 From: Satyam Kumar Jha <83828535+satyam536@users.noreply.github.com> Date: Mon, 6 Oct 2025 16:24:38 +0530 Subject: [PATCH] fix(curriculum): replace comma with semicolon in toString method example (#62542) --- .../6732c68f4520d160584a6fd2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-working-with-types-and-objects/6732c68f4520d160584a6fd2.md b/curriculum/challenges/english/blocks/lecture-working-with-types-and-objects/6732c68f4520d160584a6fd2.md index 676c8a10f00..1b5662f6d67 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-types-and-objects/6732c68f4520d160584a6fd2.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-types-and-objects/6732c68f4520d160584a6fd2.md @@ -39,7 +39,7 @@ const person = { name: "John", age: 30, isStudent: true -}, +}; console.log(person.toString()); // "[object Object]" ```