Skip to content

Conversation

@abbygottlich
Copy link
Owner

Checkpoint Rubric

This is the rubric that your instructor will use to grade your checkpoints. Please do not edit.

Checkpoint 1

  • All tests passed: 40 points
  • Proper use of documentation (commenting on code): 15 points
  • Properly indented code: 15 points
  • Demonstrated effective use of JavaScript: 30 points

Checkpoint 2

  • The application works as it should: 40 points
  • Proper use of documentation (commenting on code): 15 points
  • Properly indented code: 15 points
  • Demonstrated effective use of JavaScript and the DOM API: 30 points

Checkpoint 3

  • Use of React: 25 points
  • Accesses an API: 25 points
  • Proper use of documentation (commenting on code): 25 points
  • The application functions as it should: 25 points

// Your code here
const filteredArr = [];
//for each item in the array, run the callback function and if it passes the test push original item to the filteredArr
arr.forEach(item => {
Copy link

@ericbarrs ericbarrs Dec 4, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should not be using methods. The purpose of this exercise is to teach you how to build these higher order functions.

// Your code here
const newArr = [];
// for each item in the array, call the callback function on it
arr.forEach(item => {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should not be using methods. The purpose of this exercise is to teach you how to build these higher order functions.

}
}
return true;
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Almost all of your functions are incomplete.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants