-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathjavascriptBasics.html
More file actions
76 lines (55 loc) · 2.13 KB
/
javascriptBasics.html
File metadata and controls
76 lines (55 loc) · 2.13 KB
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learning JavaScript</title>
</head>
<body>
<h1>Leaning Javascript</h1>
<h3 id="element">Kaiwalya</h3>
<!-- <h1 id="interval"></h1> -->
<!-- This is for variables -->
<!-- <script src="./variables.js"></script> -->
<!-- This is for data types -->
<!-- <script src="./dataTypes.js"></script> -->
<!-- This is for functions -->
<!-- <script src="./functions.js"></script> -->
<!-- Returns in a function -->
<!-- <script src="./returnFunction.js"></script> -->
<!-- Scopping -->
<!-- <script src="./scoping.js"></script> -->
<!-- This is for alert prompt and confirm -->
<!-- <script src="./alertPromptConfirm.js"></script> -->
<!-- Objects -->
<!-- <script src="./object.js"></script> -->
<!-- Arrays -->
<!-- <script src="./array.js"></script> -->
<!-- If-else Statement -->
<!-- <script src="./ifelse.js"></script> -->
<!-- Switch Statement -->
<!-- <script src="./switch.js"></script> -->
<!-- Math Operator -->
<!-- <script src="./mathOperator.js"></script> -->
<!-- Increment and Decrement Operations -->
<!-- <script src="./incrementAndDecrement.js"></script> -->
<!-- Logical Operator -->
<!-- <script src="./logicalOperator.js"></script> -->
<!-- Bitwise Operators -->
<!-- <script src="./bitwiseOperator.js"></script> -->
<!-- For Loop -->
<!-- <script src="./forLoop.js"></script> -->
<!-- While Loop -->
<!-- <script src="./whileLoop.js"></script> -->
<!-- Do While Loop -->
<!-- <script src="./doWhileLoop.js"></script> -->
<!-- Break Continue Return -->
<!-- <script src="./breakContinueReturn.js"></script> -->
<!-- Array Funtions -->
<!-- <script src="./arrayFunction.js"></script> -->
<!-- Set interval and Set timeout -->
<!-- <script src="./intervalAndTimeout.js"></script> -->
<!-- Event Handlers -->
<script src="./eventHandlers.js"></script>
</body>
</html>