Skip to content

Commit c267990

Browse files
committed
1.2.5. Article - Null
1 parent 259e09b commit c267990

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -150,21 +150,21 @@ alert( isGreater ); // true (müqayisənin nəticəsi "doğru"dur)
150150
151151
Biz `boolean` tipini <info:logical-operators> fəslində daha dərindən izah edəcəyik.
152152
153-
## The "null" value
153+
## "null" dəyəri
154154
155-
The special `null` value does not belong to any of the types described above.
155+
Xüsusi bir dəyər olan `null`, yuxarıda təsvir edilən tiplərdən heç birinə aid deyil.
156156
157-
It forms a separate type of its own which contains only the `null` value:
157+
Bu dəyər yalnız özünə məxsus ayrıca bir tipdir və bu tip sadəcə `null` dəyərindən ibarətdir.
158158
159159
```js
160160
let age = null;
161161
```
162162
163-
In JavaScript, `null` is not a "reference to a non-existing object" or a "null pointer" like in some other languages.
163+
JavaScript-də `null`, "mövcud olmayan bir obyektə referans" və ya digər dillərdə olduğu kimi "null göstərici (null pointer)" anlamına gəlmir.
164164
165-
It's just a special value which represents "nothing", "empty" or "value unknown".
165+
Bu sadəcə xüsusi bir dəyərdir və "heç nə", "boş" və ya "bilinməyən dəyər"i ifadə edir.
166166
167-
The code above states that `age` is unknown or empty for some reason.
167+
Yuxarıdakı kod, `age` dəyişənin dəyərinin nə üçünsə bilinməyən və ya boş olduğunu bildirir.
168168
169169
## The "undefined" value
170170

0 commit comments

Comments
 (0)