Participation
Comedy of ErrorsA GitHub Classroom Assignment
This assignment must be accepted on GitHub Classroom.
Objective
Using the debugging tips and tools you have learned to find and fix all the errors in the files provided.
Starter Files
Follow the instructions below to get the starter file for this exercise.
- Clone this repository from GitHub and use the provided files to complete the assignment.
Functionality
When the script is fully functional, it should output a list of Quotes by William Shakespeare sort by their respective works. Quotes within each work should be numbered starting with 1
.
The following screenshot is an example what the final output should look like.
Tips
- Use the browser console to check for syntax errors.
- The console will display the error message, filename and line number of the error.
- Sometimes the mistake is made on a line before the error occurs.
- The console may only display one or two errors at a time.
- Use the code tracing technique to find logic errors.
- Use
console.log()
to follow the path the program takes to help find the error. - Walk through the program with a friend, line by line, to see if something is out of place.
Submission
Submit a link to your GitHub repository to the Comedy of Errors assignment on Brightspace.