Skip to content

Commit 6c6d5a4

Browse files
committed
minor fixes
1 parent fc8efbf commit 6c6d5a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/05-types/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ There are 8 basic data types in JavaScript.
257257

258258
- `number` for numbers of any kind: integer or floating-point, integers are limited by ±2<sup>53</sup>.
259259
- `bigint` is for integer numbers of arbitrary length.
260-
- `string` for strings. A string may have one or more characters, there's no separate single-character type.
260+
- `string` for strings. A string may have zero or more characters, there's no separate single-character type.
261261
- `boolean` for `true`/`false`.
262262
- `null` for unknown values -- a standalone type that has a single value `null`.
263263
- `undefined` for unassigned values -- a standalone type that has a single value `undefined`.

0 commit comments

Comments
 (0)