reading-notes

Reading Journal

This topic is important because it allows you to break down your JS code and closely examine what it’s doing and how. It provides a closer look into the execution of the code while allowing you to start and stop the code at predetermined points. Being able to make edits to the code in a live environment is also helpful for troubleshooting.

Reading

What Went Wrong? Troubleshooting JavaScript.

1. Name some key differences between a Syntax Error and a Logic Error.

2. List a few types of errors that you have encountered in past lab assignments and explain how you were able to correct them.

3. How will this topic continue to influence your long term goals?

The JavaScript Debugger.

1. How would you describe the JavaScript Debugger tool and how it works to someone just starting out in software development?

2. Define what a breakpoint is.

3. What is the call stack?

Things I want to know more about.

I’d like to gain more experience with hands on interaction with a debugger. I’ve used the standard “inspect” function and find that extremely useful, so I can only imagine how useful a JS debugger can be.