-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
270 lines (270 loc) · 7.89 KB
/
index.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
<!DOCTYPE html>
<html lang="en">
<head>
<meta
name="google-site-verification"
content="hecwqYrSWskdU6foIhsOepCXrQd6_AG2spWVEAC_rOo"
/>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JS NOTES</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>JS NOTES</h1>
<ol>
<li><a href="introduction-js.html">JS Introduction</a></li>
<li><a href="JS-Implementation.html">JS Implementation</a></li>
<li>
<a href="HTML-Tags-in-Javascript.html">HTML Tags in Javascript</a>
</li>
<li><a href="JS-Variables.html">JS Variables</a></li>
<li><a href="JS-Variables-Let.html">JS Variables (Let)</a></li>
<li><a href="JS-Variables-constant.html">JS Variables (Const)</a></li>
<li><a href="JS-Data-Types.html">JS Data Types</a></li>
<li>
<a href="JS-Arithmetic-Operators.html">JS Arithmetic Operators</a>
</li>
<li>
<a href="JS-Assignment-Operators.html">JS Assignment Operators</a>
</li>
<li>
<a href="JS-with-Google-Chrome-Console.html"
>JS with Google Chrome Console</a
>
</li>
<li>
<a href="JS-Comparison-Operators.html">JS Comparison Operators</a>
</li>
<li><a href="JS-If-Statement.html">JS If Statement</a></li>
<li>
<a href="JS-If-Else-If-Statement.html">JS If Else If Statement</a>
</li>
<li>
<a href="JS-Conditional-Ternary-Operator.html"
>JS Conditional Ternary Operator</a
>
</li>
<li><a href="JS-Switch-Case.html">JS Switch Case</a></li>
<li><a href="JS-Alert-Box.html">JavaScript alert()</a></li>
<li><a href="JS-Confirm-Box.html">JS Confirm Box</a></li>
<li><a href="JS-Prompt-Box.html">JS Prompt Box</a></li>
<li><a href="JS-Functions.html">JS Functions</a></li>
<li>
<a href="JS-Functions-with-Parameters.html"
>JS Functions with Parameters</a
>
</li>
<li>
<a href="JS-Functions-with-Return-Value.html"
>JS Functions with Return Value</a
>
</li>
<li>
<a href="JS-Global-&-Local-Variable.html">JS Global & Local Variable</a>
</li>
<li>
<a href="JS-Events.html">JS Events</a>
</li>
<li>
<a href="JS-While-Loop.html">JS While Loop</a>
</li>
<li>
<a href="JS-Do-While-Loop.html">JS Do While Loop</a>
</li>
<li>
<a href="JS-For-Loop.html">JS For Loop</a>
</li>
<li>
<a href="JS-Break-&-Continue-Statement.html"
>JS Break & Continue Statement</a
>
</li>
<li>
<a href="JS-Even-&-Odd-with-Loops.html">JS Even & Odd with Loops</a>
</li>
<li>
<a href="JS-Nested-Loop.html">JS Nested Loop</a>
</li>
<li>
<a href="JavaScript-Nested-Loop-II.html">JavaScript Nested Loop - II</a>
</li>
<li>
<a href="JS Arrays.html">JS Arrays</a>
</li>
<li>
<a href="JS-Create-Arrays-Method-II.html"
>JS Create Arrays Method - II</a
>
</li>
<li>
<a href="JS-Multidimensional-Arrays.html">JS Multidimensional Arrays</a>
</li>
<li>
<a href="JS-Modify-&-Delete-Array.html">JS Modify & Delete Array</a>
</li>
<li>
<a href="JS-Array-Sort-&-Reverse.html">JS Array Sort & Reverse</a>
</li>
<li>
<a href="JS-Array-Pop-&-Push.html">JS Array Pop & Push</a>
</li>
<li>
<a href="JS-Array-Concat-&-Join.html">JS Array Concat & Join</a>
</li>
<li>
<a href="JS-Array-Slice-&-Splice.html">JS Array Slice & Splice</a>
</li>
<li>
<a href="JS-isArray.html">JS isArray</a>
</li>
<li>
<a href="JS-Array-index.html">JS Array indexof and last indexof</a>
</li>
<li>
<a href="JS-Array-Includes.html">JS Array Includes</a>
</li>
<li>
<a href="JS-Array-Some-&-Every.html">JS Array Some & Every</a>
</li>
<li>
<a href="JS-Array-find-&-findIndex.html">JS Array find & findIndex</a>
</li>
<li>
<a href="JS-Array-Filter.html">JS Array Filter</a>
</li>
<li>
<a href="JS-Array-Methods.html">JS Array Methods</a>
</li>
<li>
<a href="JS-forEach-Loop.html">JS forEach Loop</a>
</li>
<li>
<a href="JS-Objects.html">JS Objects</a>
</li>
<li>
<a href="JS-Objects-II.html">JS Objects - II</a>
</li>
<li>
<a href="JS-Array-of-Objects.html">JS Array of Objects</a>
</li>
<li>
<a href="JS-Const-Variable-with-Array-&-Objects.html"
>JS Const Variable with Array & Objects</a
>
</li>
<li>
<a href="JS-For-in-Loop.html">JS For in Loop</a>
</li>
<li>
<a href="JS-Map-Method.html">JS Map Method</a>
</li>
<li>
<a href="JS-String-Methods.html">JS String Methods</a>
</li>
<li>
<a href="JS-String-Methods-II.html">JS String Methods - II</a>
</li>
<li>
<a href="JS-Number-Methods.html">JS Number Methods</a>
</li>
<li>
<a href="JS-Math-Methods.html">JS Math Methods</a>
</li>
<li>
<a href="JS-Math-Methods.html">JS Math Methods</a>
</li>
<li>
<a href="JS-Date-Methods.html">JS Date Methods</a>
</li>
</ol>
<h1>DOM</h1>
<ol>
<li>
<a href="JS-DOM-Introduction.html">JS DOM Introduction</a>
</li>
<li>
<a href="JS-DOM-Targeting-Methods.html">JS DOM Targeting Methods</a>
</li>
<li>
<a href="JS-DOM-Get-&-Set-Value-Methods.html"
>JS DOM Get & Set Value Methods</a
>
</li>
<li>
<a href="JS-DOM-querySelectors.html">JS DOM querySelectors</a>
</li>
<li>
<a href="JS-DOM-CSS-Styling-Methods.html">JS DOM CSS Styling Methods</a>
</li>
<li>
<a href="JS-addEventListener-Method.html">JS addEventListener Method</a>
</li>
<li>
<a href="JS-classList-Methods.html">JS classList Methods</a>
</li>
<li>
<a href="JS-parent-Method.html">JS parent Method</a>
</li>
<li>
<a href="JS-Children-Methods.html">JS Children Methods</a>
</li>
<li>
<a href="JS-firstChild-&-lastChild-Method.html"
>JS firstChild & lastChild Method</a
>
</li>
<li>
<a href="JS-nextSibling-&-prevSibling-Method.html"
>JS nextSibling & prevSibling Method</a
>
</li>
<li>
<a href="JS-create-&-TextNode.html">JS create & TextNode</a>
</li>
<li>
<a href="JS-appendChild-&-insertBefore.html"
>JS appendChild & insertBefore</a
>
</li>
<li>
<a href="JS-insert.html">JS insert</a>
</li>
<li>
<a href="JS-replaceChild-&-removeChild.html"
>JS replaceChild & removeChild</a
>
</li>
<li>
<a href="JS-cloneNode.html">JS cloneNode</a>
</li>
<li>
<a href="JS-Contains.html">JS Contains</a>
</li>
<li>
<a href="JS-has.html">JS has</a>
</li>
<li>
<a href="JS-isEqualNode.html">JS isEqualNode</a>
</li>
</ol>
<h1>FORM EVENTS</h1>
<ol>
<li><a href="JS-Form-Events.html">JS Form Events</a></li>
<li><a href="JS-For-Events-II.html">JS Form Events - II</a></li>
</ol>
<h1>JS Browser BOM</h1>
<ol>
<li><a href="JS-BOM-Introduction.html">JS BOM Introduction</a></li>
<li>
<a href="JS-Window-Height-&-Width.html">JS Window Height & Width</a>
</li>
<li>
<a href="JS-Window-Open-&-Close.html">JS Window Open & Close</a>
</li>
<li>
<a href="JS-Window-move.html">JS Window move</a>
</li>
</ol>
</body>
</html>