Skip to content

Commit af193aa

Browse files
committed
adding index.html file to JS I
1 parent 05715f9 commit af193aa

2 files changed

Lines changed: 22 additions & 1 deletion

File tree

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
* Fork/Clone this repository.
88
* Complete all the exercises as described inside each assignment file.
99
* Use `console.log()` statements to check to see if your code does what it is supposed to do.
10-
* To test your `console` statements you can either run `node /assignments/<fileName>` and see what prints in your terminal. You can also use an online tool like `JSBin`, `REPL.it`, `JSFiddle` or even your `Chrome developer console`.
10+
* To test your `console.log()` statements open up the index.html file found in the assignments folder and use the developer tools to view the console.
11+
12+
**Note:**You could also run `node /assignments/<fileName>` and see what prints in your terminal.
13+
1114
* Once you finish the exercises in each file, commit your code, and push it to your fork.
1215

1316
### Objects

assignments/index.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!doctype html>
2+
3+
<html lang="en">
4+
<head>
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
8+
<title>JS I</title>
9+
10+
<script src="objects.js"></script>
11+
<script src="arrays.js"></script>
12+
<script src="stretch-function-conversion.js"></script>
13+
</head>
14+
15+
<body>
16+
<h1>Check your work in the console!</h1>
17+
</body>
18+
</html>

0 commit comments

Comments
 (0)