Code Monkey home page Code Monkey logo

sprint-challenge--javascript's Introduction

Sprint Challenge: JavaScript Fundamentals

This challenge allows you to practice the concepts and techniques learned over the past week and apply them in a survey of problems. This Sprint explored JavaScript Fundamentals. During this Sprint, you studied array methods, this keyword, prototypes, and class syntax. In your challenge this week, you will demonstrate proficiency by completing a survey of JavaScript problems.

Instructions

Read these instructions carefully. Understand exactly what is expected before starting this Sprint Challenge.

This is an individual assessment. All work must be your own. Your challenge score is a measure of your ability to work independently using the material covered through this sprint. You need to demonstrate proficiency in the concepts and objectives introduced and practiced in preceding days.

You are not allowed to collaborate during the Sprint Challenge. However, you are encouraged to follow the twenty-minute rule and seek support from your TL and Instructor in your cohort help channel on Slack. Your work reflects your proficiency in JavaScript fundamentals.

You have three hours to complete this challenge. Plan your time accordingly.

Description

You will notice there are several JavaScript files being brought into the index.html file. Each of those files contain JavaScript problems you need to solve. If you get stuck on something, skip over it and come back to it later.

In meeting the minimum viable product (MVP) specifications listed below, you should have a console full of correct responses to the problems given.

Self-Study Questions

Demonstrate your understanding of this week's concepts by answering the following free-form questions.

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. Briefly compare and contrast .forEach & .map (2-3 sentences max)

While they are similar in that they both recieve functions as arguments and they both execute the function with each elemennt that the array has, .forEach returns undefined while .map returns a new array.

  1. Explain the difference between a callback and a higher order function.

While callback functions are used as arguments by other functions, high order functions have the ability to recieve other functions as parameters.

  1. What is closure?

Closures allow us to put functions together and access functions that have been terminated by way of the child of that function.

  1. Describe the four rules of the 'this' keyword.

a) Unless it's in strict mode, when no other rules apply, "this" gets defaulted to the window (global scope). If it is in strict mode, then it just returns that it's undefined.
b)Explicit Binding- When we use the methods ".call" and "apply", we explicitly define "this". c)Implicit Binding- Look to the left of the "." when you invoke the function. This is the most common way that the keyword "this" is used. d)New Binding- When we're dealing with a constructor function "this" will be reffering to the object being created by the fuction.

  1. Why do we need super() in an extended class?

We need "super()" because it calls the constructor of the parent class and thus, gives us access to the properties and methods of the parent function.

Task 1 - Project Set up

Follow these steps to set up and work on your project: Make sure you clone the branch that the TK links to: the vnext branch, NOT master!

  • 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 <firstName-lastName>.
  • 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.
  • Push commits: git push origin <firstName-lastName>.

Task 2 - Minimum Viable Product

Your finished project must include all of the following requirements:

Pro tip for this challenge: If something seems like it isn't working locally, copy and paste your code up to codepen and take another look at the console.

Task A: Objects and Arrays

Test your knowledge of advanced array methods and callbacks.

Task B: Closure

This challenge takes a look at closures as well as scope.

  • Use the closure.js link to get started. Read the instructions carefully!

Task C: Prototypes

Create constructors, bind methods, and create cuboids in this prototypes challenge.

  • Use the prototypes.js link to get started. Read the instructions carefully!

Task D: Classes

Once you have completed the prototypes challenge, it's time to convert all your hard work into classes.

  • Use the classes.js link to get started. Read the instructions carefully!

In your solutions, it is essential that you follow best practices and produce clean and professional results. Schedule time to review, refine, and assess your work and perform basic professional polishing including spell-checking and grammar-checking on your work. It is better to submit a challenge that meets MVP than one that attempts too much and does not.

Task 3 - Stretch Problems

There are a few stretch problems found throughout the files, don't work on them until you are finished with MVP requirements!

Submission Format

Follow these steps for completing your project:

  • Submit a Pull-Request to merge Branch into master (student's Repo).
  • Add your team lead as a Reviewer on the Pull-request
  • TL then will count the HW as done by merging the branch back into master.

sprint-challenge--javascript's People

Contributors

bigknell avatar ryan-hamblin avatar mixelpixel avatar jcuffe avatar zoelud avatar ladrillo avatar brityhemming avatar atoledo1 avatar brudnak avatar justsml avatar dombruno avatar ericathompson avatar jasonsbarr avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.