Skip to content

Commit 084e22f

Browse files
Created New Template
1 parent 3ca830b commit 084e22f

118 files changed

Lines changed: 41979 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en-US">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>JS Basics</title>
6+
<link rel="stylesheet" href="../css/styles.css">
7+
</head>
8+
9+
<body>
10+
11+
<nav>
12+
<a href="#">JavaScript Basics</a>
13+
</nav>
14+
15+
<script src="01_script.js"></script>
16+
</body>
17+
</html>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
//console log
2+
3+
//Display date on the console
4+
5+
// Display date on the web page using DOM
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en-US">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Variable Declaration</title>
6+
<link rel="stylesheet" href="../css/styles.css">
7+
</head>
8+
9+
<body>
10+
11+
<nav>
12+
<a href="#">Variable Declarations</a>
13+
</nav>
14+
15+
<script src="02_script.js"></script>
16+
</body>
17+
</html>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en-US">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>JS DataTypes</title>
6+
<link rel="stylesheet" href="../css/styles.css">
7+
</head>
8+
9+
<body>
10+
11+
<nav>
12+
<a href="#">JS Data Types</a>
13+
</nav>
14+
15+
<script src="03_script.js"></script>
16+
</body>
17+
</html>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// number example
2+
3+
// String Examples
4+
5+
// boolean Examples
6+
7+
// reassignment example of variables
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>JS Operators</title>
6+
<link rel="stylesheet" href="../css/styles.css">
7+
</head>
8+
<body>
9+
10+
<nav>
11+
<a href="#">JS Operators</a>
12+
</nav>
13+
14+
<script src="04_script.js"></script>
15+
</body>
16+
</html>
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// Assignment operator =
2+
3+
4+
// Arithmetic operators + - * /
5+
6+
7+
// Short hand math += , -= , *= , /=
8+
9+
10+
// Conditional operators < , > , <= , >= , !=
11+
12+
13+
// Unary Operator ++ , -- (pre , post)
14+
15+
16+
// Logical operators AND , OR
17+
18+
19+
// String Concatenation Operator
20+
21+
22+
// Ternary operator (? :)
23+
24+
25+
// Type of operator
26+
27+
28+
// == operator
29+
30+
31+
// === operator
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>JS Conditional Statements</title>
6+
<link rel="stylesheet" href="../css/styles.css">
7+
</head>
8+
<body>
9+
10+
<nav>
11+
<a href="#">JS Conditional Statements</a>
12+
</nav>
13+
14+
<script src="05_script.js"></script>
15+
</body>
16+
</html>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// If Else condition Example
2+
3+
4+
// For loop Example to display from 1 - 10 values
5+
6+
7+
// While loop Example to display from 1 - 10 values
8+
9+
10+
// Do while loop Example to display from 1 - 10 values
11+
12+
13+
// Switch Statement Example

0 commit comments

Comments
 (0)