Skip to content

Commit 2277f2f

Browse files
committed
images
1 parent 63dc4cd commit 2277f2f

21 files changed

+445
-82
lines changed
-43.1 KB
Binary file not shown.
Lines changed: 48 additions & 0 deletions
Loading
Lines changed: 101 additions & 0 deletions
Loading

β€Ž1-js/03-code-quality/01-debugging-chrome/article.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Congratulations! You've set a breakpoint. Please also click on the number for li
5050

5151
It should look like this (blue is where you should click):
5252

53-
![](chrome-sources-breakpoint.png)
53+
![](chrome-sources-breakpoint.svg)
5454

5555
A *breakpoint* is a point of code where the debugger will automatically pause the JavaScript execution.
5656

@@ -93,7 +93,7 @@ In our example, `hello()` is called during the page load, so the easiest way to
9393

9494
As the breakpoint is set, the execution pauses at the 4th line:
9595

96-
![](chrome-sources-debugger-pause.png)
96+
![](chrome-sources-debugger-pause.svg)
9797

9898
Please open the informational dropdowns to the right (labeled with arrows). They allow you to examine the current code state:
9999

@@ -125,7 +125,7 @@ There are buttons for it at the top of the right pane. Let's engage them.
125125

126126
Here's what we can see after a click on it:
127127

128-
![](chrome-sources-debugger-trace-1.png)
128+
![](chrome-sources-debugger-trace-1.svg)
129129

130130
The execution has resumed, reached another breakpoint inside `say()` and paused there. Take a look at the "Call stack" at the right. It has increased by one more call. We're inside `say()` now.
131131

-58.9 KB
Binary file not shown.

β€Ž1-js/03-code-quality/01-debugging-chrome/chrome-sources-breakpoint.svg

Lines changed: 25 additions & 0 deletions
Loading
-115 KB
Binary file not shown.
-81.5 KB
Binary file not shown.

β€Ž1-js/03-code-quality/01-debugging-chrome/chrome-sources-debugger-pause.svg

Lines changed: 70 additions & 0 deletions
Loading
-152 KB
Binary file not shown.

0 commit comments

Comments
 (0)