Skip to content

Commit a7e26d1

Browse files
committedNov 10, 2017
scaffolding
1 parent 7e48f4a commit a7e26d1

File tree

5 files changed

+4290
-0
lines changed

5 files changed

+4290
-0
lines changed
 

‎.gitignore

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# Bower dependency directory (https://bower.io/)
27+
bower_components
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (https://nodejs.org/api/addons.html)
33+
build/Release
34+
35+
# Dependency directories
36+
/node_modules/
37+
jspm_packages/
38+
39+
# Typescript v1 declaration files
40+
typings/
41+
42+
# Optional npm cache directory
43+
.npm
44+
45+
# Optional eslint cache
46+
.eslintcache
47+
48+
# Optional REPL history
49+
.node_repl_history
50+
51+
# Output of 'npm pack'
52+
*.tgz
53+
54+
# Yarn Integrity file
55+
.yarn-integrity
56+
57+
# dotenv environment variables file
58+
.env

‎Answers.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Your responses to the short answer questions should be laid out here using Mark Down.
2+
### For help with markdown syntax [Go here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)

‎README.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Assessing your JavaScript Fundamentals Fu
2+
* The objective of this challenge is to get you used to answering a few questions about JavaScript that are commonly asked in interviews.
3+
* We also have some more reps for you to help hammer in the knowledge you've thus far learned.
4+
* Answers to your written questions will be recorded in *Answers.md*
5+
* This is to be worked on alone but you can use outside resources. You can *reference* any old code you may have, and the React Documentation, however, please refrain from copying and pasting any of your answers. Try and understand the question and put your responses in your own words. Be as thorough as possible when explaining something.
6+
* **Just a friendly Reminder** Don't fret or get anxious about this, this is a no-pressure assessment that is only going to help guide you here in the near future. This is NOT a pass/fail situation.
7+
## Start by forking and cloning this repository.
8+
## Questions - Self Study - You can exercise your Google-Fu for this and any other _Sprint Challenge_ in the future.
9+
1. Describe some of the differences between `.forEach` & `.map`.
10+
2. Name five different Types in JavaScript. A Type is something that can represent data. What is so special about Arrays?
11+
3. What is closure? Can you code out a quick example of a closure?
12+
4. Describe the four rules of the 'this' keyword. No need to provide examples about it this time :)
13+
14+
## Initializing Project -
15+
*

‎package-lock.json

+4,183
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "Sprint-Challenge--JavaScript",
3+
"version": "1.0.0",
4+
"description": "* The objective of this challenge is to get you used to answering a few questions about JavaScript that are commonly asked in interviews. * We also have some more reps for you to help hammer in the knowledge you've thus far learned. * Answers to your written questions will be recorded in *Answers.md* * This is to be worked on alone but you can use outside resources. You can *reference* any old code you may have, and the React Documentation, however, please refrain from copying and pasting any of your answers. Try and understand the question and put your responses in your own words. Be as thorough as possible when explaining something. * **Just a friendly Reminder** Don't fret or get anxious about this, this is a no-pressure assessment that is only going to help guide you here in the near future. This is NOT a pass/fail situation. ## Start by forking and cloning this repository. ## Questions - Self Study - You can exercise your Google-Fu for this and any other _Sprint Challenge_ in the future. 1. Describe some of the differences between `.forEach` & `.map`. 2. Name five different Types in JavaScript. A Type is something that can represent data. What is so special about Arrays? 3. What is closure? Can you code out a quick example of a closure? 4. Describe the four rules of the 'this' keyword. No need to provide examples about it this time :)",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/LambdaSchool/Sprint-Challenge--JavaScript.git"
12+
},
13+
"keywords": [],
14+
"author": "",
15+
"license": "ISC",
16+
"devDependencies": {
17+
"babel-jest": "^19.0.0",
18+
"eslint": "^3.17.1",
19+
"eslint-config-airbnb-base": "^11.1.3",
20+
"eslint-plugin-import": "^2.2.0",
21+
"jest": "^19.0.2",
22+
"regenerator-runtime": "^0.10.3"
23+
},
24+
"dependencies": {
25+
"babel-preset-es2015": "^6.24.1",
26+
"eslint-config-airbnb": "^14.1.0"
27+
},
28+
"bugs": {
29+
"url": "https://github.com/LambdaSchool/Sprint-Challenge--JavaScript/issues"
30+
},
31+
"homepage": "https://github.com/LambdaSchool/Sprint-Challenge--JavaScript#readme"
32+
}

0 commit comments

Comments
 (0)
Please sign in to comment.