Skip to content

Commit a0a7872

Browse files
committed
1.2.5. Article - Data Types
1 parent e59a90b commit a0a7872

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Verilən tipləri
22

3-
A variable in JavaScript can contain any data. A variable can at one moment be a string and at another be a number:
3+
JavaScript-də bir dəyişən istənilən veriləni ehtiva edə bilər. Bir dəyişən əvvəl `string` tipində ola bilər, sonra isə `number` tipinə çevrilə bilər.
44

55
```js
6-
// no error
7-
let message = "hello";
6+
// xəta yoxdur
7+
let message = "salam";
88
message = 123456;
99
```
1010

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.
11+
Bu cür hallara icazə verən proqramlaşdırma dillərinə "dinamik tipli dillər" deyilir. Bu o deməkdir ki, verilən tipləri mövcuddur, lakin dəyişənlər həmin tiplərə bağlı deyil.
1212

13-
There are eight basic data types in JavaScript. Here, we'll cover them in general and in the next chapters we'll talk about each of them in detail.
13+
JavaScript-də 8 əsas verilən tipi mövcuddur. Bu fəsildə onları ümumi olaraq nəzərdən keçirəcəyik, növbəti fəsillərdə isə hər biri haqqında daha ətraflı danışacağıq.
1414

1515
## Number
1616

0 commit comments

Comments
 (0)