|
1 |
| -# Code structure |
| 1 | +# Kod Strukturu |
2 | 2 |
|
3 |
| -The first thing we'll study is the building blocks of code. |
| 3 | +İlk öyrənəcəyimiz mövzu kodun əsas elementləridir. |
4 | 4 |
|
5 |
| -## Statements |
| 5 | +## İfadələr |
6 | 6 |
|
7 |
| -Statements are syntax constructs and commands that perform actions. |
| 7 | +İfadələr sintaksis konstruksiyaları və əmrlərdir ki, müəyyən əməliyyatlar yerinə yetirir. |
8 | 8 |
|
9 |
| -We've already seen a statement, `alert('Hello, world!')`, which shows the message "Hello, world!". |
| 9 | +Artıq `alert('Salam, dünya!')` ifadəsini görmüşük ki, bu da "Salam, dünya!" mesajını göstərir. |
10 | 10 |
|
11 |
| -We can have as many statements in our code as we want. Statements can be separated with a semicolon. |
| 11 | +Kodumuzda istədiyimiz qədər ifadə ola bilər. İfadələr nöqtəli vergüllə ayrılır. |
12 | 12 |
|
13 |
| -For example, here we split "Hello World" into two alerts: |
| 13 | +Məsələn, burada "Salam, dünya" mesajını iki xəbərdarlıq şəklində ayırmışıq: |
14 | 14 |
|
15 | 15 | ```js run no-beautify
|
16 |
| -alert('Hello'); alert('World'); |
| 16 | +alert('Salam'); alert('Dünya'); |
17 | 17 | ```
|
18 | 18 |
|
19 |
| -Usually, statements are written on separate lines to make the code more readable: |
| 19 | +Adətən, ifadələr kodun oxunaqlılığını artırmaq üçün ayrı-ayrı sətirlərdə yazılır: |
20 | 20 |
|
21 | 21 | ```js run no-beautify
|
22 |
| -alert('Hello'); |
23 |
| -alert('World'); |
| 22 | +alert('Salam'); |
| 23 | +alert('Dünya'); |
24 | 24 | ```
|
25 | 25 |
|
26 |
| -## Semicolons [#semicolon] |
| 26 | +## Nöqtəli Vergüllər [#semicolon] |
27 | 27 |
|
28 |
| -A semicolon may be omitted in most cases when a line break exists. |
| 28 | +Sətir sonunda bir çox hallarda nöqtəli vergül buraxıla bilər. |
29 | 29 |
|
30 |
| -This would also work: |
| 30 | +Bu da işləyəcək: |
31 | 31 |
|
32 | 32 | ```js run no-beautify
|
33 |
| -alert('Hello') |
34 |
| -alert('World') |
| 33 | +alert('Salam') |
| 34 | +alert('Dünya') |
35 | 35 | ```
|
36 | 36 |
|
37 |
| -Here, JavaScript interprets the line break as an "implicit" semicolon. This is called an [automatic semicolon insertion](https://tc39.github.io/ecma262/#sec-automatic-semicolon-insertion). |
| 37 | +Burada JavaScript interpretatoru sətir sonunu "örtülü" nöqtəli vergül kimi qəbul edir. Bu proses [avtomatik nöqtəli vergül daxil edilməsi (automatic semicolon insertion)](https://tc39.github.io/ecma262/#sec-automatic-semicolon-insertion) adlanır. |
38 | 38 |
|
39 |
| -**In most cases, a newline implies a semicolon. But "in most cases" does not mean "always"!** |
| 39 | +**Əksər hallarda yeni sətir nöqtəli vergül əlavə edildiyini ifadə edir. Amma "əksər hallarda" "hər zaman" demək deyil!** |
40 | 40 |
|
41 |
| -There are cases when a newline does not mean a semicolon. For example: |
| 41 | +Müəyyən hallar var ki, yeni sətir nöqtəli vergül anlamına gəlmir. Məsələn: |
42 | 42 |
|
43 | 43 | ```js run no-beautify
|
44 | 44 | alert(3 +
|
45 | 45 | 1
|
46 | 46 | + 2);
|
47 | 47 | ```
|
48 | 48 |
|
49 |
| -The code outputs `6` because JavaScript does not insert semicolons here. It is intuitively obvious that if the line ends with a plus `"+"`, then it is an "incomplete expression", so the semicolon is not required. And in this case that works as intended. |
| 49 | +Bu kodun nəticəsi `6` olacaq, çünki, JavaScript interpretatoru burada nöqtəli vergül daxil etmir. JavaScript üçün intuitiv olaraq aydındır ki, əgər sətir `+` (üstəgəl) simvolu ilə bitirsə, bu "natamam ifadə"dir və nöqtəli vergül tələb olunmur. Bu halda kod gözlənildiyi kimi işləyir. |
50 | 50 |
|
51 |
| -**But there are situations where JavaScript "fails" to assume a semicolon where it is really needed.** |
| 51 | +**Amma müəyyən hallar da var ki, JavaScript belə hallarda nöqtəli vergülü avtomatik əlavə edə bilmir və nəticədə xəta yaranır.** |
52 | 52 |
|
53 |
| -Errors which occur in such cases are quite hard to find and fix. |
| 53 | +Belə hallarda xətaları tapmaq və düzəltmək olduqca çətin ola bilər. |
54 | 54 |
|
55 |
| -````smart header="An example of an error" |
56 |
| -If you're curious to see a concrete example of such an error, check this code out: |
| 55 | +````smart header="Xəta üçün bir nümunə" |
| 56 | +Əgər belə bir xətaya konkret nümunə görmək istəyirsinizsə, bu kodu yoxlayın: |
57 | 57 |
|
58 | 58 | ```js run
|
59 | 59 | [1, 2].forEach(alert)
|
60 | 60 | ```
|
61 | 61 |
|
62 |
| -No need to think about the meaning of the brackets `[]` and `forEach` yet. We'll study them later. For now, just remember the result of the code: it shows `1` then `2`. |
| 62 | +İndilik `[]` (kvadrat mötərizələr) və `forEach` haqqında düşünməyə ehtiyac yoxdur. Onları daha sonra öyrənəcəyik. Hazırda sadəcə kodun nəticəsinə diqqət edin: bu kod əvvəlcə `1`, daha sonra `2` göstərəcək. |
63 | 63 |
|
64 |
| -Now, let's add an `alert` before the code and *not* finish it with a semicolon: |
| 64 | +İndi kodun əvvəlinə bir `alert` əlavə edək və onu nöqtəli vergülsüz bitirək: |
65 | 65 |
|
66 | 66 | ```js run no-beautify
|
67 |
| -alert("There will be an error") |
| 67 | +alert("Xəta baş verəcək") |
68 | 68 |
|
69 | 69 | [1, 2].forEach(alert)
|
70 | 70 | ```
|
71 | 71 |
|
72 |
| -Now if we run the code, only the first `alert` is shown and then we have an error! |
| 72 | +İndi bu kodu işə salsaq, yalnız ilk `alert` mesajı görünəcək və daha sonra xəta ilə üzləşəcəyik! |
73 | 73 |
|
74 |
| -But everything is fine again if we add a semicolon after `alert`: |
| 74 | +Amma əgər `alert` ifadəsindən sonra nöqtəli vergül əlavə etsək, hər şey yenidən qaydasında olacaq: |
75 | 75 | ```js run
|
76 |
| -alert("All fine now"); |
| 76 | +alert("Hər şey qaydasındadır."); |
77 | 77 |
|
78 | 78 | [1, 2].forEach(alert)
|
79 | 79 | ```
|
80 | 80 |
|
81 |
| -Now we have the "All fine now" message followed by `1` and `2`. |
| 81 | +İndi "Hər şey qaydasındadır." mesajından sonra `1` və `2` görünür. |
82 | 82 |
|
83 | 83 |
|
84 |
| -The error in the no-semicolon variant occurs because JavaScript does not assume a semicolon before square brackets `[...]`. |
| 84 | +Nöqtəli vergülün olmadığı variantda xəta JavaScript'in kvadrat mötərizədən əvvəl nöqtəli vergülü avtomatik əlavə edə bilməməsindən qaynaqlanır. |
85 | 85 |
|
86 |
| -So, because the semicolon is not auto-inserted, the code in the first example is treated as a single statement. Here's how the engine sees it: |
| 86 | +Beləliklə, nöqtəli vergül avtomatik olaraq əlavə edilmədiyindən, ilk nümunədəki kod tək ifadə kimi qəbul olunur. JavaScript mühərriki kodu belə görür: |
87 | 87 |
|
88 | 88 | ```js run no-beautify
|
89 |
| -alert("There will be an error")[1, 2].forEach(alert) |
| 89 | +alert("Xəta baş verəcək")[1, 2].forEach(alert) |
90 | 90 | ```
|
91 | 91 |
|
92 |
| -But it should be two separate statements, not one. Such a merging in this case is just wrong, hence the error. This can happen in other situations. |
| 92 | +Amma kod iki ayrı ifadə olmalı idi, tək deyil. Bu halda birləşmə səhv baş verir və nəticədə xəta yaranır. Bu problem digər hallarda da yarana bilər. |
93 | 93 | ````
|
94 | 94 |
|
95 |
| -We recommend putting semicolons between statements even if they are separated by newlines. This rule is widely adopted by the community. Let's note once again -- *it is possible* to leave out semicolons most of the time. But it's safer -- especially for a beginner -- to use them. |
| 95 | +Əgər ifadələr sətirlərlə ayrılıbsa, onların arasına nöqtəli vergül qoymağı tövsiyə edirik. Bu qayda JavaScript cəmiyyəti tərəfindən geniş şəkildə qəbul olunub. Yenidən bir də qeyd edək ki, nöqtəli vergülləri çox vaxt buraxmaq -- *mümkündür*. Lakin, xüsusilə yeni başlayanlar üçün, nöqtəli vergüllərdən istifadə etmək daha təhlükəsizdir. |
96 | 96 |
|
97 |
| -## Comments [#code-comments] |
| 97 | +## Şərhlər [#code-comments] |
98 | 98 |
|
99 |
| -As time goes on, programs become more and more complex. It becomes necessary to add *comments* which describe what the code does and why. |
| 99 | +Zaman keçdikcə proqramlar daha mürəkkəb hala gələ bilər. Bu zaman kodun nə etdiyini və niyə olduğunu izah edən *şərhlər* əlavə etmək lazım olur. |
100 | 100 |
|
101 |
| -Comments can be put into any place of a script. They don't affect its execution because the engine simply ignores them. |
| 101 | +Şərhləri skriptin istənilən yerində yerləşdirmək olar. Onlar kodun icrasına təsir etmir, çünki, JavaScript mühərriki onları sadəcə nəzərə almır. |
102 | 102 |
|
103 |
| -**One-line comments start with two forward slash characters `//`.** |
| 103 | +**Təksətirlik şərhlər iki ardıcıl slash (`//`) ilə başlayır.** |
104 | 104 |
|
105 |
| -The rest of the line is a comment. It may occupy a full line of its own or follow a statement. |
| 105 | +Sətirin qalan hissəsi şərh hesab olunur. Şərhlər ayrıca bir sətri tuta bilər və ya bir ifadəni izləyə bilər. |
106 | 106 |
|
107 |
| -Like here: |
| 107 | +Məsələn: |
108 | 108 | ```js run
|
109 |
| -// This comment occupies a line of its own |
110 |
| -alert('Hello'); |
| 109 | +// Bu şərh ayrıca bir sətirdə yerləşir |
| 110 | +alert('Salam'); |
111 | 111 |
|
112 |
| -alert('World'); // This comment follows the statement |
| 112 | +alert('Dünya'); // Bu şərh ifadədən sonra yerləşir |
113 | 113 | ```
|
114 | 114 |
|
115 |
| -**Multiline comments start with a forward slash and an asterisk <code>/*</code> and end with an asterisk and a forward slash <code>*/</code>.** |
| 115 | +**Çoxsətirli şərhlər bir slash (`/`) və asterisk (`*`) ilə başlayır <code>/*</code> və bir asterisk (`*`) və slash (`/`) ilə bitir <code>*/</code>.** |
116 | 116 |
|
117 |
| -Like this: |
| 117 | +Məsələn: |
118 | 118 |
|
119 | 119 | ```js run
|
120 |
| -/* An example with two messages. |
121 |
| -This is a multiline comment. |
| 120 | +/* İki mesaj ehtiva edən bir nümunə. |
| 121 | +Bu çoxsətirli bir şərhdir. |
122 | 122 | */
|
123 |
| -alert('Hello'); |
124 |
| -alert('World'); |
| 123 | +alert('Salam'); |
| 124 | +alert('Dünya'); |
125 | 125 | ```
|
126 | 126 |
|
127 |
| -The content of comments is ignored, so if we put code inside <code>/* ... */</code>, it won't execute. |
| 127 | +Şərhlərin məzmunu JavaScript mühərriki tərəfindən nəzərə alınmadığı üçün, əgər kodu <code>/* ... */</code> içərisində yerləşdirsək, o icra olunmayacaq. |
128 | 128 |
|
129 |
| -Sometimes it can be handy to temporarily disable a part of code: |
| 129 | +Bəzən kodun müəyyən bir hissəsini müvəqqəti olaraq söndürmək üçün şərhlərdən istifadə etmək faydalıdır: |
130 | 130 |
|
131 | 131 | ```js run
|
132 |
| -/* Commenting out the code |
133 |
| -alert('Hello'); |
| 132 | +/* Kodu deaktiv edirik |
| 133 | +alert('Salam'); |
134 | 134 | */
|
135 |
| -alert('World'); |
| 135 | +alert('Dünya'); |
136 | 136 | ```
|
137 | 137 |
|
138 |
| -```smart header="Use hotkeys!" |
139 |
| -In most editors, a line of code can be commented out by pressing the `key:Ctrl+/` hotkey for a single-line comment and something like `key:Ctrl+Shift+/` -- for multiline comments (select a piece of code and press the hotkey). For Mac, try `key:Cmd` instead of `key:Ctrl`. |
| 138 | +```smart header="Qısayollardan istifadə edin!" |
| 139 | +Əksər redaktorlarda bir kod sətrini təksətirlik şərh etmək üçün `key:Ctrl+/` qısayolundan, çoxsətirli şərhlər üçün isə (kodun bir hissəsini seçib) `key:Ctrl+Shift+/` kombinasiyasından istifadə edə bilərsiniz. Mac istifadəçiləri `key:Ctrl` əvəzinə `key:Cmd` istifadə edə bilərlər. |
140 | 140 | ```
|
141 | 141 |
|
142 |
| -````warn header="Nested comments are not supported!" |
143 |
| -There may not be `/*...*/` inside another `/*...*/`. |
| 142 | +````warn header="İç-içə şərhlər dəstəklənmir!" |
| 143 | +`/*...*/` içərisində başqa bir `/*...*/` şərhi yerləşdirilə bilməz. |
144 | 144 |
|
145 |
| -Such code will die with an error: |
| 145 | +Belə bir kod xəta ilə nəticələnir: |
146 | 146 |
|
147 | 147 | ```js run no-beautify
|
148 | 148 | /*
|
149 |
| - /* nested comment ?!? */ |
| 149 | + /* İç-içə şərh ?!? */ |
150 | 150 | */
|
151 |
| -alert( 'World' ); |
| 151 | +alert('Dünya'); |
152 | 152 | ```
|
153 | 153 | ````
|
154 | 154 |
|
155 |
| -Please, don't hesitate to comment your code. |
| 155 | +Kodunuzu şərh etməkdən çəkinməyin. |
156 | 156 |
|
157 |
| -Comments increase the overall code footprint, but that's not a problem at all. There are many tools which minify code before publishing to a production server. They remove comments, so they don't appear in the working scripts. Therefore, comments do not have negative effects on production at all. |
| 157 | +Şərhlər ümumi kodun ölçüsünü artırır, lakin bu problem deyil. Bir çox alət kodu "production server"da, yəni istehsal serverində yayımlamadan əvvəl kiçildir. Bu prosesdə şərhlər silinir və işlək skriptlərdə yer almır. Buna görə də şərhlərin istehsal serverinə heç bir mənfi təsiri yoxdur. |
158 | 158 |
|
159 |
| -Later in the tutorial there will be a chapter <info:code-quality> that also explains how to write better comments. |
| 159 | +Daha sonra bu dərslikdə [Kod keyfiyyəti](<info:code-quality>) adlı bir fəsil olacaq. Bu fəsil daha yaxşı şərhlər yazmaq barədə əlavə |
| 160 | +məsləhətlər verəcək. |
0 commit comments