fix(curriculum): use double quotations in console.log statement (#56516)

This commit is contained in:
Suzuru 2024-10-05 00:40:09 +05:30 committed by GitHub
parent ed5fb9bca8
commit 63359ff234
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,7 @@ Remember that you learned about `console.log()` and strings in the previous lect
Here is a reminder of how to use `console.log()` with strings:
```js
console.log('Hello, World!');
console.log("Hello, World!");
```
Add a `console.log()` statement that outputs the string `"Hi there!"` to the console. Don't forget your quotes around the message!