8000 Add steps to run a quiz · ooade/Advanced-JavaScript@693d867 · GitHub
[go: up one dir, main page]

Skip to content

Commit 693d867

Browse files
committed
Add steps to run a quiz
1 parent 04cbbc8 commit 693d867

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ This documentation is based on John Resig's website on Advanced JavaScript. If t
66

77
- [Goal](#goal)
88
- [Helper Methods](#helper-methods)
9+
- [Running a Quiz](#running-a-quiz)
910
- [Lessons](#lessons)
1011
- [Defining Functions](#defining-functions)
1112
- [Order of function definition](#order-of-function-definition)
@@ -117,6 +118,15 @@ log( "Just a simple log", "of", "values.", true );
117118
error( "I'm an error!" );
118119
```
119120

121+
### Running a Quiz
122+
123+
It's not quite hard.
124+
125+
1. Fork the Repo.
126+
2. Clone the Repo to your machine.
127+
3. `npm install`.
128+
4. `node start.js`
129+
120130
## Lessons
121131

122132
### Defining Functions

start.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ var assert = require('./helper').assert
22
var error = require('./helper').error
33
var log = require('./helper').log
44

5-
// Run your code below this line
5+
// write your code below this line

0 commit comments

Comments
 (0)
0