File tree Expand file tree Collapse file tree 4 files changed +41
-1
lines changed Expand file tree Collapse file tree 4 files changed +41
-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 22' )
2
+ console . log ( 'Objects' )
3
+
4
+ var characterDetails = {
5
+ name : 'Monkey D. Luffy' ,
6
+ age : 19 ,
7
+ fatherName : 'Monkey D. Dragon' ,
8
+ brothers : [ 'Ace' , 'Sabo' ] ,
9
+ favoriteFood : 'Meat' ,
10
+ shout : function ( ) {
11
+ console . log ( 'gomu gomu no....' )
12
+ }
13
+ }
14
+
15
+ characterDetails . age = 20
16
+
17
+ console . log ( characterDetails )
18
+
19
+ characterDetails . shout ( )
Original file line number Diff line number Diff line change @@ -84,4 +84,12 @@ Day 19
84
84
```
85
85
Day 20
86
86
```
87
- * [ Day 20] ( https://blog.nerdjfpb.com/javascript-part-20/ ) - Array
87
+ * [ Day 20] ( https://blog.nerdjfpb.com/javascript-part-20/ ) - Array
88
+ ```
89
+ Day 21
90
+ ```
91
+ * [ Day 21] ( https://blog.nerdjfpb.com/javascript-part-21/ ) - More About Array
92
+ ```
93
+ Day 22
94
+ ```
95
+ * [ Day 22] ( https://blog.nerdjfpb.com/javascript-part-22/ ) - Object
You can’t perform that action at this time.
0 commit comments