-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 2.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "Sprint-Challenge--JavaScript",
"version": "1.0.0",
"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 :)",
"main": "index.js",
"scripts": {
"test": "eslint tests/*.js && eslint src/*.js && jest --verbose",
"watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LambdaSchool/Sprint-Challenge--JavaScript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-jest": "^19.0.0",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"jest": "^19.0.2",
"regenerator-runtime": "^0.10.3"
},
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"eslint-config-airbnb": "^14.1.0"
},
"bugs": {
"url": "https://github.com/LambdaSchool/Sprint-Challenge--JavaScript/issues"
},
"homepage": "https://github.com/LambdaSchool/Sprint-Challenge--JavaScript#readme"
}