reading-notes

My reading notes


Project maintained by brandomoki Hosted on GitHub Pages — Theme by mattgraham

Read: Class-10

What Went Wrong? Troubleshooting JavaScript.

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

    • syntax are spelling errors that break the code and logic errors are when the code does what wasnt inteded
  2. List a few types of errors that you have encountered in past lab assignments and explain how you were able to correct them.

    • syntax errors every lab I use the linter to assist
  3. How will this topic continue to influence your long term goals?

    • This will have me checking code frequently

The JavaScript Debugger.

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

    • its like having a semi-helpful backseat driver
  2. Define what a breakpoint is.

    • this is where you want the code to stop running so you can workout errors
  3. What is the call stack?

    • a section that shows you what code was executed to get to the current line