From a791671adbf6d5d97a7341317108690ca1a4c4a6 Mon Sep 17 00:00:00 2001 From: moT01 <20648924+moT01@users.noreply.github.com> Date: Tue, 3 Aug 2021 07:39:25 -0500 Subject: [PATCH] fix: refine instructions --- ...ifferences-between-the-freecodecamp-and-browser-console.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/debugging/understanding-the-differences-between-the-freecodecamp-and-browser-console.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/debugging/understanding-the-differences-between-the-freecodecamp-and-browser-console.md index 4f3765bf82..e13f2b4a1f 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/debugging/understanding-the-differences-between-the-freecodecamp-and-browser-console.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/debugging/understanding-the-differences-between-the-freecodecamp-and-browser-console.md @@ -8,9 +8,9 @@ dashedName: understanding-the-differences-between-the-freecodecamp-and-browser-c # --description-- -You may have noticed that some freeCodeCamp JavaScript 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 for the 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. It may be helpful to know that 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 is re-ran. +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. # --instructions--