Skip to content

Fix merge conflict #287

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Azerbaijani/01_Giriş/helloworld.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('Salam, dünya!')
19 changes: 19 additions & 0 deletions Azerbaijani/01_Giriş/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>

<head>
<title>30 Günlük JavaScript dərsləri</title>
</head>

<body>
<h1>30 Günlük JavaScript:01 Gün</h1>
<h2>Giriş</h2>
<button onclick="alert('30 Günlük JavaScript dərslərinə xoş gəlmişsiniz');">Kliklə</button>
<script src="helloworld.js"></script>
<script src="introduction.js"></script>
<script src="variables.js"></script>
<script src="main.js"></script>

</body>

</html>
1 change: 1 addition & 0 deletions Azerbaijani/01_Giriş/introduction.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('30 Günlük JS dərsləri')
4 changes: 4 additions & 0 deletions Azerbaijani/01_Giriş/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// bir faylda müəyyən olunmuş dəyişənlər digərindən əlçatandır
console.log(firstName, lastName, country, city, age, isMarried)
console.log(gravity, boilingPoint, PI) // 9.81, 100, 3.14
console.log(name, job, live)
20 changes: 20 additions & 0 deletions Azerbaijani/01_Giriş/variables.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// Müxtəlif verilənlər tipindən istifadə edərək dəyişənlərin yaradılmasə

let firstName = 'Asabeneh' // ad
let lastName = 'Yetayeh' // soyad
let country = 'Finland' // ölkə
let city = 'Helsinki' // paytaxt
let age = 100 // yaş
let isMarried = true

// ədəd tipli dəyişənlərin sabit açar sözü ilə yaradılması

const gravity = 9.81 // Fizikada istifadə olunan qravitasiya sabiti
const boilingPoint = 100 // Normal atmosfer təzyiqində suyun qaynama tempraturu
const PI = 3.14 // Geometrik sabit

// Yalnız bir açar sözü istifadə etməklə müxtəlif dəyişənlər vergüllə ayrılmış şəkildə yaradıla bilər

let name = 'Asabeneh', //ad
job = 'teacher', // vəzifə
live = 'Finland' // ölkə
662 changes: 662 additions & 0 deletions Azerbaijani/readMe.md

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion readMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@
🇬🇧 [English](./readMe.md)
🇪🇸 [Spanish](./Spanish/readme.md)
🇷🇺 [Russian](./RU/README.md)
🇰🇷 [Korian](./Korea/README.md)
🇦🇿 [Azerbaijan](./Azerbaijani/readMe.md)
KR [Korean](./Korea/README.md)
🇻🇳 [Vietnamese](./Vietnamese/README.md)

</div>
Expand Down