Skip to content

Commit 219cf28

Browse files
committed
Day 20
1 parent d7f6f36 commit 219cf28

File tree

4 files changed

+25
-1
lines changed

4 files changed

+25
-1
lines changed

Day 20/css/style.css

Whitespace-only changes.

Day 20/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 20/js/script.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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])

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,8 @@ Day 18
8080
```
8181
Day 19
8282
```
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

0 commit comments

Comments
 (0)