File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
1-js/02-first-steps/05-types Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -150,21 +150,21 @@ alert( isGreater ); // true (müqayisənin nəticəsi "doğru"dur)
150150
151151Biz ` 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
160160let 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
You can’t perform that action at this time.
0 commit comments