ReadingNotes

Debugging

Notes on debugging

https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps/What_went_wrong

https://developer.mozilla.org/en-US/docs/Learn/Common_questions/Tools_and_setup/What_are_browser_developer_tools#the_javascript_debugger

Troubleshooting

There are 2 main types of errors you going to come across, syntax and logic errors.

There are other common errors that youll come across in your code.

What are browser developer tools?

Every modern web browser includes a powerful suite of developer tools. These tools do a range of things, from inspecting currently-loaded HTML, CSS and JavaScript to showing which assets the page has requested and how long they took to load.

Questions

  1. Syntax Errors occur when we violate the rules of writing the statements of the programming language. Logical Errors occur due to our mistakes in programming logic.
  2. I have encounterednsyntax errors dealing iwth missing parenthesis and curly braces. I just go back to the line theyre missing on and go back and add them.
  3. a breakpoint is a means of acquiring knowledge about a program during its execution.

things i want to know more about

I want to know more about using dev tools and how to use them. I want to learn more about how to resolve logic error issues.