From d79b491b26c90785fbff1e429ee616e10e497580 Mon Sep 17 00:00:00 2001 From: borsec-suveran <62297262+borsec-suveran@users.noreply.github.com> Date: Thu, 19 Mar 2020 21:07:55 -0400 Subject: [PATCH] Update 00_.md --- .../05_Debugging in JavaScript/00_Debugging/00_.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01_Introduction to JavaScript Development/05_Debugging in JavaScript/00_Debugging/00_.md b/01_Introduction to JavaScript Development/05_Debugging in JavaScript/00_Debugging/00_.md index ba26443..b5a8ff9 100755 --- a/01_Introduction to JavaScript Development/05_Debugging in JavaScript/00_Debugging/00_.md +++ b/01_Introduction to JavaScript Development/05_Debugging in JavaScript/00_Debugging/00_.md @@ -1,3 +1,3 @@ -Debugging is the act of identifying and fixing errors in your program. Modern browsers have JavaScript console where errors in scripts are reported. This can be found via right clicking the site and selecting "Inspect Element". You will then see a console screen where errors are printed (if any). +Debugging is the act of identifying and fixing errors in your program. Modern browsers have a JavaScript console where errors in scripts are reported. This can be found via right-clicking the site and selecting "Inspect Element". You will then see a console screen where errors are printed (if any). -Errors may differ across browsers as each browser has their own JavaScript Engine. There are several tools you can use to debug JavaScript. Microsoft Script Editor is a convenient add-on for Internet Explorer that supports breakpoints and watches for debugging. If you are using other browsers, debugging it locally on your computer or searching for an add-on or a online text editor is how you would approach debugging. Firefox has Firebug, which we will talk about in the next section. +Errors may differ across browsers as each browser has its own JavaScript engine. There are several tools you can use to debug JavaScript. Microsoft Script Editor is a convenient add-on for Internet Explorer that supports breakpoints and watches for debugging. If you are using other browsers, debugging locally on your computer or searching for an add-on or an online text editor is how you would approach debugging. Firefox has Firebug, which we will talk about in the next section.