File tree Expand file tree Collapse file tree 4 files changed +25
-1
lines changed Expand file tree Collapse file tree 4 files changed +25
-1
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 20' )
2
+ console . log ( 'Array -- Data Structure' )
3
+
4
+ var friendsCharacters = [ 'Chandler' , 'Joey' , 'Ross' ]
5
+ console . log ( friendsCharacters )
6
+ console . log ( friendsCharacters [ 0 ] )
7
+ console . log ( friendsCharacters [ 4 ] )
Original file line number Diff line number Diff line change 80
80
```
81
81
Day 19
82
82
```
83
- * [ Day 19] ( https://blog.nerdjfpb.com/javascript-part-19/ ) - RETURN in functions
83
+ * [ Day 19] ( https://blog.nerdjfpb.com/javascript-part-19/ ) - RETURN in functions
84
+ ```
85
+ Day 20
86
+ ```
87
+ * [ Day 20] ( https://blog.nerdjfpb.com/javascript-part-20/ ) - Array
You can’t perform that action at this time.
0 commit comments