Skip to content

Commit 07cfe65

Browse files
SunJieMingSunJieMing
authored andcommitted
Initial commit
0 parents  commit 07cfe65

File tree

14 files changed

+4758
-0
lines changed

14 files changed

+4758
-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: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
"arrow-body-style": 0,
16+
"no-unused-vars": 0,
17+
"no-useless-constructor": 0,
18+
"import/no-unresolved": 0
19+
}
20+
}

.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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Advanced JavaScript
2+
3+
## Instructions
4+
## 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!
5+
#### Fork and clone this repo.
6+
* Run the command `npm i` to install needed node packages.
7+
* Run the command `npm test` to run the tests.
8+
* Work through the files and make the tests pass.
9+
* Suggested order: `es6.js`, `arrays.js`, `objects.js`, `this.js`, `class.js`, `closure.js`, and then `recursion.js`.
10+
* Submit a pull request when you are finished and we will review your code.

0 commit comments

Comments
 (0)