fix(curriculum): place comment below example in greeting bot workshop (#59734)
Some checks failed
i18n - Build Validation / Validate i18n Builds (20) (push) Has been cancelled
CI - Node.js / Lint (20) (push) Has been cancelled
CI - Node.js / Build (20) (push) Has been cancelled
CI - Node.js / Test (20) (push) Has been cancelled
CI - Node.js / Test - Upcoming Changes (20) (push) Has been cancelled
CI - Node.js / Test - i18n (italian, 20) (push) Has been cancelled
CI - Node.js / Test - i18n (portuguese, 20) (push) Has been cancelled
i18n - Upload Client UI / Client (push) Has been cancelled
i18n - Upload Curriculum / Learn (push) Has been cancelled

This commit is contained in:
Supravisor 2025-04-16 17:44:37 +12:00 committed by GitHub
parent 6ab6b384d2
commit 7f5a4c9ea0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,8 +14,8 @@ In the lecture videos, you learned how to work with string concatenation using t
```js
let firstName = "John";
// result: "Hello, my name is John."
"Hello, my name is " + firstName + ".";
// result: "Hello, my name is John."
```
Remember that you need to be mindful of spaces when concatenating strings with variables.