Skip to content

Commit 932d521

Browse files
committed
More colons in chapter 3
1 parent 079c058 commit 932d521

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

01_values.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Fractional numbers are written using a dot:
7979

8080
{{index exponent, "scientific notation", [number, notation]}}
8181

82-
For very big or very small numbers, you may also use scientific notation by adding an _e_ (for _exponent_), followed by the exponent of the number.
82+
For very big or very small numbers, you may also use scientific notation by adding an _e_ (for _exponent_), followed by the exponent of the number:
8383

8484
```
8585
2.998e8
@@ -107,7 +107,7 @@ The `+` and `*` symbols are called _operators_. The first stands for addition an
107107

108108
{{index grouping, parentheses, precedence}}
109109

110-
Does this example mean "Add 4 and 100, and multiply the result by 11", or is the multiplication done before the adding? As you might have guessed, the multiplication happens first. As in mathematics, you can change this by wrapping the addition in parentheses.
110+
Does this example mean "Add 4 and 100, and multiply the result by 11", or is the multiplication done before the adding? As you might have guessed, the multiplication happens first. As in mathematics, you can change this by wrapping the addition in parentheses:
111111

112112
```{meta: "expr"}
113113
(100 + 4) * 11
@@ -257,7 +257,7 @@ console.log(3 < 2)
257257

258258
The `>` and `<` signs are the traditional symbols for "is greater than" and "is less than", respectively. They are binary operators. Applying them results in a Boolean value that indicates whether they hold true in this case.
259259

260-
Strings can be compared in the same way.
260+
Strings can be compared in the same way:
261261

262262
```
263263
console.log("Aardvark" < "Zoroaster")

0 commit comments

Comments
 (0)