forked from Asabeneh/30-Days-Of-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bakhtiyar_Garashov
committed
Mar 8, 2022
1 parent
d4746d3
commit 26af1a2
Showing
7 changed files
with
709 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log('Salam, dünya!') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log('30 Günlük JS dərsləri') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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ə |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters