Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/debugging/understanding-the-differences-between-the-freecodecamp-and-browser-console.md

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
This commit is contained in:
Tom
2021-08-27 09:24:38 -05:00
committed by GitHub
parent 93fcef4eae
commit 71073e3146

View File

@ -10,7 +10,7 @@ dashedName: understanding-the-differences-between-the-freecodecamp-and-browser-c
You may have noticed that some freeCodeCamp challenges include their own console. This console behaves a little differently than the browser console. You may have noticed that some freeCodeCamp challenges include their own console. This console behaves a little differently than the browser console.
There are many methods to use with `console` to output messages. `log`, `warn`, and `clear` to name a few. The freeCodeCamp console will only output `log` messages, while the browser console will output all messages. When you make changes to your code, it will run automatically and show the logs. The freeCodeCamp console is then cleared each time your code runs. There are many methods to use with `console` to output messages. `log`, `warn`, and `clear` to name a few. The freeCodeCamp console will only output `log` messages, while the browser console will output all messages. When you make changes to your code, it will automatically run and show the logs. The freeCodeCamp console is then cleared each time your code runs.
# --instructions-- # --instructions--