Skip to content

Commit 6c0b4ba

Browse files
committed
Day 16
1 parent 883c0e0 commit 6c0b4ba

File tree

4 files changed

+29
-0
lines changed

4 files changed

+29
-0
lines changed

Day 16/css/style.css

Whitespace-only changes.

Day 16/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>JavaScript Tutorial</title>
7+
<link rel="stylesheet" href="./css/style.css" />
8+
</head>
9+
<body>
10+
Welcome to JavaScript Tutorials!
11+
<script src="./js/script.js"></script>
12+
</body>
13+
</html>

Day 16/js/script.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
console.log('Welcome to day 16')
2+
console.log('Functions')
3+
4+
function simple() {
5+
console.log('Console log from inside function')
6+
}
7+
8+
simple()

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,11 @@ Day 13
6161
Day 14
6262
```
6363
* [Day 14](https://blog.nerdjfpb.com/javascript-part-14/) - For Loop
64+
```
65+
Day 15
66+
```
67+
* [Day 15](https://blog.nerdjfpb.com/javascript-part-15/) - For Vs While
68+
```
69+
Day 16
70+
```
71+
* [Day 16](https://blog.nerdjfpb.com/javascript-part-16/) - Functions

0 commit comments

Comments
 (0)