diff --git a/README.md b/README.md index 408612117c..2683050160 100644 --- a/README.md +++ b/README.md @@ -29,23 +29,28 @@ Demonstrate your understanding of this week's concepts by answering the followin Edit this document to include your answers after each question. Make sure to leave a blank line above and below your answer so it is clear and easy to read by your team lead 1. Describe the biggest difference between `.forEach` & `.map`. +.forEach makes the changes directly on the array or .map makes another array with the changes 2. What is the difference between a function and a method? + 3. What is closure? + 4. Describe the four rules of the 'this' keyword. + 5. Why do we need super() in an extended class? +to take back the attributes from the extended class ## Project Set up Follow these steps to set up and work on your project: -- [ ] Create a forked copy of this project. -- [ ] Add TL as collaborator on Github. -- [ ] Clone your OWN version of Repo (Not Lambda's by mistake!). -- [ ] Create a new Branch on the clone: git checkout -b ``. +- [x] Create a forked copy of this project. +- [x] Add TL as collaborator on Github. +- [x] Clone your OWN version of Repo (Not Lambda's by mistake!). +- [x] Create a new Branch on the clone: git checkout -b ``. - [ ] Create a pull request before you start working on the project requirements. You will continuously push your updates throughout the project. - [ ] You are now ready to build this project with your preferred IDE - [ ] Implement the project on your Branch, committing changes regularly.