Skip to content

Conversation

@renataestes
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

Renata Estes added 2 commits August 20, 2017 17:47
Copy link

@reneemeyer reneemeyer left a comment

Choose a reason for hiding this comment

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

Renata, over all nice job. I really like your white boarding. However, upon testing, I was unable to check the guess or display a hint. You're almost there, you just need to fix a few es6 things and possibly some functionality bugs.

boardColorsCanvas.setAttribute('class', 'palette');
// boardColorsCanvas.setAttribute('class', 'boardColors')
// const boardColorsCanvas = document.getElementById('boardColors')
for(let i = 0; i < boardColors.length; i++){

Choose a reason for hiding this comment

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

You should use a map or for each here.

document.addEventListener('DOMContentLoaded', () => {

let boardColors = ['red', 'blue', 'green', 'white', 'yellow', 'purple', 'orange', 'black'];
let generatedAnswer = [];

Choose a reason for hiding this comment

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

this should be a const

populateChoice(color);
});
boardColorsCanvas.appendChild(chooseSection);
let theBody = document.getElementsByTagName('body')[0];

Choose a reason for hiding this comment

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

this should be a const

// boardColorsCanvas.setAttribute('class', 'boardColors')
// const boardColorsCanvas = document.getElementById('boardColors')
for(let i = 0; i < boardColors.length; i++){
let chooseSection = document.createElement('div');

Choose a reason for hiding this comment

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

this should be a const

<body>
<script type="text/javascript" src="./script.js"></script>

<div>

Choose a reason for hiding this comment

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

nice clean html!!!

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