scrimba
Bootcamp code reviews
πŸ‘©πŸΌβ€πŸ« Review of Solo Project - Basketball Scoreboard for Shant
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

πŸ‘©πŸΌβ€πŸ« Review of Solo Project - Basketball Scoreboard for Shant
AboutCommentsNotes
πŸ‘©πŸΌβ€πŸ« Review of Solo Project - Basketball Scoreboard for Shant
Expand for more info
readme.md
run
preview
console
# Code Review: Basketball Scorecard
### _Code by: Shant,_
### _Reviewer: Felicity Evans_

## What you did well
- Works!
- design, use of font
- code indentation
- JS functions, separation, arguments


## What could be improved?
- CSS fixed widths for responsive

## Challenge
- Stretch goal: show who's in the lead
- Turn inline functions into eventListeners
Starter code:
document.getElementsByClassName("thisOne")[0].addEventListener("click", function(event){
console.log(Number(event.target.textContent))
})
Console
/index.html
-6:24