fix(curriculum): missing space between backtick and parenthesis (#60822)

This commit is contained in:
dev-kamil 2025-06-11 06:15:37 +02:00 committed by GitHub
parent 94f3728e76
commit 998185448a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ dashedName: task-6
The phrase `a lot` is used to express a large quantity or degree of something. It can be used to talk about both countable and uncountable nouns.
When you want to say that there is much of something or many of something, you can use `a lot` followed by `of`, like in `a lot of books`(countable noun) or `a lot of water` (uncountable noun).
When you want to say that there is much of something or many of something, you can use `a lot` followed by `of`, like in `a lot of books` (countable noun) or `a lot of water` (uncountable noun).
You can use it at the end of the sentence to express that something is done often or frequently. An example is `He travels a lot.` It means `He travels often.`

View File

@ -42,7 +42,7 @@ console.log(year); // 2024
## Different Ways to Format Dates
- **`toISOString()` Method**: This method is used to format the date in an extended `ISO`(ISO 8601) format. ISO 8601 is an international standard for representing dates and times. The format is `YYYY-MM-DDTHH:mm:ss.sssZ`.
- **`toISOString()` Method**: This method is used to format the date in an extended `ISO` (ISO 8601) format. ISO 8601 is an international standard for representing dates and times. The format is `YYYY-MM-DDTHH:mm:ss.sssZ`.
```js
const date = new Date();

View File

@ -2248,7 +2248,7 @@ console.log(year); // 2024
## Different Ways to Format Dates
- **`toISOString()` Method**: This method is used to format the date in an extended `ISO`(ISO 8601) format. ISO 8601 is an international standard for representing dates and times. The format is `YYYY-MM-DDTHH:mm:ss.sssZ`.
- **`toISOString()` Method**: This method is used to format the date in an extended `ISO` (ISO 8601) format. ISO 8601 is an international standard for representing dates and times. The format is `YYYY-MM-DDTHH:mm:ss.sssZ`.
```js
const date = new Date();