fix(curriculum): reworded grammar to do without hyphen (#43487)

Suggesting the removal of "-" on line 29 in the description, as the comma before "such" is sufficient to separate the examples from the rest of the sentence.
This commit is contained in:
Aaron McCollum
2021-09-18 21:13:05 +09:00
committed by GitHub
parent c184f23d27
commit badeb6e2df

View File

@ -26,7 +26,7 @@ var cat = {
};
```
In this example, all the properties are stored as strings, such as - `name`, `legs`, and `tails`. However, you can also use numbers as properties. You can even omit the quotes for single-word string properties, as follows:
In this example, all the properties are stored as strings, such as `name`, `legs`, and `tails`. However, you can also use numbers as properties. You can even omit the quotes for single-word string properties, as follows:
```js
var anotherObject = {