Skip to content

Commit dbade6c

Browse files
authored
spelling fixes
1 parent 99f6e07 commit dbade6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Data types
22

3-
A variable in JavaScript can contain any data. A variable can at one moment be a string and later recieve a numeric value:
3+
A variable in JavaScript can contain any data. A variable can at one moment be a string and later receive a numeric value:
44

55
```js
66
// no error
77
let message = "hello";
88
message = 123456;
99
```
1010

11-
Programming languages that allow such thing are called "dynamically typed", meaning that there are data types, but variables are not bound to any of them.
11+
Programming languages that allow such things are called "dynamically typed", meaning that there are data types, but variables are not bound to any of them.
1212

1313
There are 7 basic data types in JavaScript. Here we'll study the basics, and in next chapters we'll talk about each of them in detail.
1414

0 commit comments

Comments
 (0)