Update article.md

This commit is contained in:
Nurlan Alekberov 2017-06-05 17:10:50 +04:00 committed by GitHub
parent 168b273caa
commit 109fe90151

View file

@ -231,7 +231,7 @@ The last three lines may need additional explanations:
There are 7 basic types in JavaScript. There are 7 basic types in JavaScript.
- `number` for numbers of any kind: integer or floating-point. - `number` for numbers of any kind: integer or floating-point.
- `string` for strings. A string may have one more more characters, there's no separate single-character type. - `string` for strings. A string may have one or more characters, there's no separate single-character type.
- `boolean` for `true`/`false`. - `boolean` for `true`/`false`.
- `null` for unknown values -- a standalone type that has a single value `null`. - `null` for unknown values -- a standalone type that has a single value `null`.
- `undefined` for unassigned values -- a standalone type that has a single value `undefined`. - `undefined` for unassigned values -- a standalone type that has a single value `undefined`.