forked from MarkTechson/tau-intro-to-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsololearn.html
73 lines (63 loc) · 2.85 KB
/
sololearn.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sololearn examples</title>
<link href="stylesheet.css" rel="stylesheet">
<!-- header start -->
<div id="header" class="section">
<img alt="" class="img-circle" src="https://blob.sololearn.com/avatars/4cc6cd1d-02e4-43bf-8f8c-a661735d03b0.jpg">
<p>Vladyslav Rutskyi</p>
</div>
</head>
<body>
<div class="section">
<h1><span> A play ground for the Sololearn JS</span> </h1>
<p>I will try to practice all lessons from the Sololearn source.</p>
<p>I hope it will be a good idea.</p>
<p>If it is nessesary to find the JS code, please open attached JS file.
Search trough the comments, and there you'll find my code.
</p>
</div class="section">
<div class="section">
<h1><span> My JS learning progress</span></h1>
<li>Assignment operators = Операторы присваивания</li>
<li><b>Escape Character</b> looks like \</li>
<li>Template Literals = Шаблонные литералы</li>
<li>Concatenation = Конкатенация </li>
<li>Booleans = Булевы значения </li>
<li>The if statement = Инструкция if </li>
<li>the switch statement = Инструкция switch </li>
<li>Ternary operator = Тернарный оператор </li>
<li>The for loop = Циклы <b>for</b> </li>
<li>The while loop = Цикл <b>while</b> </li>
<li>The do...while loop = Цикл do...while </li>
<li>The break statement = Инструкция break </li>
<li>continue </li>
<li>Functions = Функции</li>
<li>Parameters = Параметры </li>
<li>Returning from functions = Возвращение значений функциями </li>
</div class="section">
<!-- Contacts section start -->
<div class="section" id="contacts">
<h1><span>You can find me on the following learning sources</span></h1>
<div>
<a href="https://www.sololearn.com/profile/1417293" target="_blank">
<img alt="SoloLearn" src="https://www.sololearn.com/Uploads/icons/sololearn.png" />
</a>
<a href="https://testautomationu.applitools.com/me.html#vladyslav-rutskiy" target="_blank">
<img alt="TAU" src="https://testautomationu.applitools.com/logo-TAU-gold-poweredby-applitools-467x105.png"/>
</a>
<a href="https://www.mygreatlearning.com/academy?referrer_code=GL9VAFQTJEXOA" target="_blank">
<img alt="Twitter" src="https://d9jmtjs5r4cgq.cloudfront.net/images/branding/greatlearning-brand-v1-2.svg" />
</a>
</div>
</div>
<!-- Contacts section end -->
<div class="copyright">
© 2023 My Diary. All rights reserved.
</div>
<script src="sololearn.js"></script>
</body>
</html>