Debugging with Chrome Developer Tools Flashcards

1
Q

How do you open the Chrome Developer Tools?

A

super easy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Use the debugger statement to pause execution in the Chrome Developer Tools.

A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Use log values to the console in the Browser

A

super easy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Set breakpoints in code using the Chrome Developer Tools

A

https://www.youtube.com/watch?v=KbEx0s06VLs @ 4:42

To debug in the Chrome browser run your program and open up the dev tools. Open up the Sources tab and the main.js file.

To set a breakpoint navigate click on function you want to set a breakpoint on. When you run the program the code will run everything up to the point where the breakpoint is declared.

Step in:
Step over:
Step out:
Continue:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Inspect an element in the DOM using the Chrome Developer Tools.

A

super easy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Change element styling using the Chrome Developer Tools.

A

super easy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Inspect network requests using the Chrome developer tools

A

super easy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Describe the JS call stack

A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Use the debugger step in, step out, and step over function calls, in the Chrome Developer Tools.

A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly