scrimba
Bootcamp code reviews
πŸ‘©πŸΌβ€πŸ« Review of Texterly AI for Tony Laio
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 Texterly AI for Tony Laio
AboutCommentsNotes
πŸ‘©πŸΌβ€πŸ« Review of Texterly AI for Tony Laio
Expand for more info
readme.md
run
preview
console
# Code Review: Texterly Ai
### _Code by: Tony Liao ,_
### _Reviewer: Felicity Evans_

## What you did well
- unique design / content
- clear commented code
- consistent names across css and js
- using css grid

## Questions
- Would appreciate any feedback on how I organized this JS
group event listeners together e.g.

document.addEventListener("click", function(event){
if (event.target.className == "this-is-the-class"){
...
}
}

- is there a better way to clear the form?
document.getElementById("form").reset()

- Just wondering where I can improve upon my responsive design and HTML/CSS organization
- use <link> instead of font import
- mobile first and media query for desktop
- avoid ids for styling: #word-count

## What could be improved?
- check for empty to and from fields



Console
/index.html
-5:21