Skip to content

Commit 68362a3

Browse files
gnwxsumn2u
authored andcommitted
Update README.md
1 parent 11491c3 commit 68362a3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tr/basics/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ pageNumber: 8
77
# Bölüm 2
88
# Temeller
99

10-
In this first chapter, we'll learn the basics of programming and the Javascript language.
10+
Bu ilk bölümde, programlamanın ve Javascript dilinin temellerini öğreneceğiz.
1111

12-
Programming means writing code. A book is made up of chapters, paragraphs, sentences, phrases, words, and finally punctuation and letters, likewise a program can be broken down into smaller and smaller components. For now, the most important is a statement. A statement is analogous to a sentence in a book. On its own, it has structure and purpose, but without the context of the other statements around it, it isn't that meaningful.
12+
Programlama kod yazmak demektir. Bir kitap bölümlerden, paragraflardan, cümlelerden, deyimlerden, kelimelerden ve son olarak noktalama işaretleri ve harflerden oluşur, aynı şekilde bir program da daha küçük ve daha küçük bileşenlere ayrılabilir. Şimdilik en önemlisi bir ifadedir. Bir ifade, kitaptaki bir cümleye benzer. Kendi başına bir yapısı ve amacı vardır, ancak etrafındaki diğer ifadelerin bağlamı olmadan o kadar da anlamlı değildir.
1313

14-
A statement is more casually (and commonly) known as a _line of code_. That's because statements tend to be written on individual lines. As such, programs are read from top to bottom, left to right. You might be wondering what code (also called source code) is. That happens to be a broad term which can refer to the whole of the program or the smallest part. Therefore, a line of code is simply a line of your program.
14+
Bir ifade yaygın olarak bir *kod satırı* olarak bilinir. Bunun nedeni, ifadelerin tek tek satırlara yazılma eğiliminde olmasıdır. Bu nedenle, programlar yukarıdan aşağıya, soldan sağa doğru okunur. Kodun (kaynak kodu da denir) ne olduğunu merak ediyor olabilirsiniz. Bu, programın tamamını veya en küçük parçasını ifade edebilen geniş bir terimdir. Bu nedenle, bir kod satırı basitçe programınızın bir satırıdır.
1515

16-
Here is a simple example:
16+
17+
İşte basit bir örnek:
1718

1819
```javascript
1920
let hello = "Hello";
2021
let world = "World";
2122

22-
// Message equals "Hello World"
23+
// Message "Hello World"'e eşittir.
2324
let message = hello + " " + world;
2425
```
25-
26-
This code can be executed by another program called an _interpreter_ that will read the code, and execute all the statements in the right order.
26+
Bu kod, _interpreter_(*yorumlayıcı*) adı verilen ve kodu okuyup tüm ifadeleri doğru sırada çalıştıran başka bir program tarafından çalıştırılabilir.

0 commit comments

Comments
 (0)