fix(curriculum): replace comma with semicolon in toString method example (#62542)

This commit is contained in:
Satyam Kumar Jha 2025-10-06 16:24:38 +05:30 committed by GitHub
parent e7c9399857
commit afdbf9913f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,7 +39,7 @@ const person = {
name: "John",
age: 30,
isStudent: true
},
};
console.log(person.toString()); // "[object Object]"
```