Completing this assignment depends on knowing:
- Basic JavaScript: variables, functions, conditionals
- JavaScript DOM methods for locating, adding and removing elements
Behavior:
- Click on items to remove them from the list
- Add Item button should:
- hide the button
- show the form
- Form submit should:
- add a new item to the list
- then hide the form
- show the New Item button
- Use functions to break down the functionality into small tasks
- Practice good coding standards with clear variable and function names, use ES6
let
andconst
instead ofvar
- Make sure your variables are well named. Avoid abbreviations and use camelCase to make multi-word names readable.
When you are done, push your files to GitHub, then make sure that your page displays and runs correctly on the GitHub website.
Don't forget the Pull Request. Put a screenshot of the open request in the assignment dropbox.