Skip to content

Commit ea6c357

Browse files
SunJieMingSunJieMing
authored andcommitted
Initial commit
0 parents  commit ea6c357

File tree

13 files changed

+4815
-0
lines changed

13 files changed

+4815
-0
lines changed

.babelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["es2015"]
3+
}

.eslintrc.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"extends": "airbnb-base",
3+
"plugins": [
4+
"import"
5+
],
6+
"consistent-return": 0,
7+
"rules": {
8+
"no-param-reassign": 0,
9+
"max-len": 0,
10+
"no-plusplus": 0,
11+
"linebreak-style": 0,
12+
"consistent-return": 0,
13+
"no-useless-return": 0,
14+
"no-return-assign": 0,
15+
"comma-dangle": 0,
16+
"arrow-body-style": 0,
17+
"max-len": 0,
18+
"no-unused-vars": 0,
19+
"no-useless-constructor": 0,
20+
"import/no-unresolved": 0
21+
}
22+
}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.swp
2+
node_modules

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# JavaScript I
2+
3+
## Instructions
4+
5+
Do not use any of the built in Javascript Array methods like .forEach .map etc. If you'd like feel free to reuse any of your functions along the way though!
6+
7+
#### Fork and clone this repo.
8+
* Clone this repository and navigate into it.
9+
* Run the command `npm i` to install needed node packages.
10+
* Run the command `npm test` to run the tests.
11+
* Work through the files and make the tests pass.
12+
* Suggested order: `callbacks.js` (no tests), `arrays.js`, `objects.js`, `closure.js`.
13+
* Submit a pull request when you are finished and we will review your code.

0 commit comments

Comments
 (0)