Skip to content

Commit 66e1083

Browse files
authored
Merge pull request #1 from corebranch/1.2.2
1.2.2. Translate "Code Structure" article to Azerbaijani
2 parents bee728c + 4592a21 commit 66e1083

File tree

1 file changed

+67
-66
lines changed

1 file changed

+67
-66
lines changed
+67-66
Original file line numberDiff line numberDiff line change
@@ -1,159 +1,160 @@
1-
# Code structure
1+
# Kod Strukturu
22

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.
44

5-
## Statements
5+
## İfadələr
66

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.
88

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.
1010

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.
1212

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:
1414

1515
```js run no-beautify
16-
alert('Hello'); alert('World');
16+
alert('Salam'); alert('Dünya');
1717
```
1818

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:
2020

2121
```js run no-beautify
22-
alert('Hello');
23-
alert('World');
22+
alert('Salam');
23+
alert('Dünya');
2424
```
2525

26-
## Semicolons [#semicolon]
26+
## Nöqtəli Vergüllər [#semicolon]
2727

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.
2929

30-
This would also work:
30+
Bu da işləyəcək:
3131

3232
```js run no-beautify
33-
alert('Hello')
34-
alert('World')
33+
alert('Salam')
34+
alert('Dünya')
3535
```
3636

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.
3838

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!**
4040

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:
4242

4343
```js run no-beautify
4444
alert(3 +
4545
1
4646
+ 2);
4747
```
4848

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.
5050

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.**
5252

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.
5454

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:
5757
5858
```js run
5959
[1, 2].forEach(alert)
6060
```
6161
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.
6363
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:
6565
6666
```js run no-beautify
67-
alert("There will be an error")
67+
alert("Xəta baş verəcək")
6868
6969
[1, 2].forEach(alert)
7070
```
7171
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!
7373
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:
7575
```js run
76-
alert("All fine now");
76+
alert("Hər şey qaydasındadır.");
7777
7878
[1, 2].forEach(alert)
7979
```
8080
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` `2` görünür.
8282
8383
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.
8585
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:
8787
8888
```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)
9090
```
9191
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.
9393
````
9494

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.
9696

97-
## Comments [#code-comments]
97+
## Şərhlər [#code-comments]
9898

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.
100100

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.
102102

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.**
104104

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.
106106

107-
Like here:
107+
Məsələn:
108108
```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');
111111

112-
alert('World'); // This comment follows the statement
112+
alert('Dünya'); // Bu şərh ifadədən sonra yerləşir
113113
```
114114

115-
**Multiline comments start with a forward slash and an asterisk <code>/&#42;</code> and end with an asterisk and a forward slash <code>&#42;/</code>.**
115+
**Çoxsətirli şərhlər bir slash (`/`) və asterisk (`*`) ilə başlayır <code>/&#42;</code> və bir asterisk (`*`) və slash (`/`) ilə bitir <code>&#42;/</code>.**
116116

117-
Like this:
117+
Məsələn:
118118

119119
```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.
122122
*/
123-
alert('Hello');
124-
alert('World');
123+
alert('Salam');
124+
alert('Dünya');
125125
```
126126

127-
The content of comments is ignored, so if we put code inside <code>/&#42; ... &#42;/</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>/&#42; ... &#42;/</code> içərisində yerləşdirsək, o icra olunmayacaq.
128128

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:
130130

131131
```js run
132-
/* Commenting out the code
133-
alert('Hello');
132+
/* Kodu deaktiv edirik
133+
alert('Salam');
134134
*/
135-
alert('World');
135+
alert('Dünya');
136136
```
137137

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.
140140
```
141141

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.
144144
145-
Such code will die with an error:
145+
Belə bir kod xəta ilə nəticələnir:
146146
147147
```js run no-beautify
148148
/*
149-
/* nested comment ?!? */
149+
/* İç-içə şərh ?!? */
150150
*/
151-
alert( 'World' );
151+
alert('Dünya');
152152
```
153153
````
154154

155-
Please, don't hesitate to comment your code.
155+
Kodunuzu şərh etməkdən çəkinməyin.
156156

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.
158158

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

Comments
 (0)