-
-
Notifications
You must be signed in to change notification settings - Fork 40.1k
fix(curriculum): update questions in Debugging techniques lecture #60359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
...es/english/25-front-end-development/lecture-debugging-techniques/6733becf4b0c353553b9bfa4.md
Show resolved
Hide resolved
I saw that the feedback wasn't compatible with the new question, but I can't make a full review of the new question |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couple minor suggestions...
|
||
--- | ||
|
||
It immediately pauses execution, allowing you to inspect variables and the flow of the code. | ||
Pausing code execution at a prefined location so you can inspect the code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pausing code execution at a prefined location so you can inspect the code. | |
Pausing code execution. |
When I see one answer that's significantly longer than the rest, I assume it to be the correct answer - I think other people often have the same impression. How about this suggestion? Still seem correct to me.
```js | ||
let firstNumber = 23; | ||
let secondNumber = 4; | ||
debugger; // Code execution pauses here |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
debugger; // Code execution pauses here | |
debugger; |
Let's remove this to not give away the answer?
Checklist:
main
branch of freeCodeCamp.Closes #60349