File tree Expand file tree Collapse file tree 4 files changed +29
-0
lines changed Expand file tree Collapse file tree 4 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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 ( )
Original file line number Diff line number Diff line change @@ -61,3 +61,11 @@ Day 13
61
61
Day 14
62
62
```
63
63
* [ 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
You can’t perform that action at this time.
0 commit comments