Skip to content

Commit 8488eb5

Browse files
committed
WIP: Translating "Code structure" article to Azerbaijani
1 parent bee728c commit 8488eb5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

1-js/02-first-steps/02-structure/article.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
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
1616
alert('Hello'); alert('World');

0 commit comments

Comments
 (0)