We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c98d89e commit a390708Copy full SHA for a390708
doc/en/types/casting.md
@@ -47,13 +47,13 @@ The best option is to cast to one of the three possible types **explicitly**.
47
48
'' + 10 === '10'; // true
49
50
-By prepending a empty string a value can easily be casted to a string.
+By prepending an empty string, a value can easily be casted to a string.
51
52
### Casting to a Number
53
54
+'10' === 10; // true
55
56
-Using the **unary** plus operator it is possible to cast to a number.
+Using the **unary** plus operator, it is possible to cast to a number.
57
58
### Casting to a Boolean
59
0 commit comments