From 3bd15795c80d9dffcf76565b1a886735f4ceb95b Mon Sep 17 00:00:00 2001 From: Oseni Olamide <95568774+olamideo1102@users.noreply.github.com> Date: Tue, 17 May 2022 23:56:09 +0800 Subject: [PATCH] Update 13_day_console_object_methods.md Typos --- .../13_day_console_object_methods.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/13_Day_Console_object_methods/13_day_console_object_methods.md b/13_Day_Console_object_methods/13_day_console_object_methods.md index 6f7b611..dd173ba 100644 --- a/13_Day_Console_object_methods/13_day_console_object_methods.md +++ b/13_Day_Console_object_methods/13_day_console_object_methods.md @@ -39,9 +39,9 @@ ## Console Object Methods -In this section, we will cover about console and console object methods. Absolute beginners usually do not know which to use: console.log(), document.write() or document.getElementById. +In this section, we will cover console and console object methods. Absolute beginners usually do not know which to use: console.log(), document.write() or document.getElementById. -We use console object methods to show output on the browser console and we use document.write to show output on the browser document(view port). Both methods used only for testing and debugging purposes. The console method is the most popular testing and debugging tool on the browser. We use document.getElementById() when we like to interact with DOM try using JavaScript. We will cover DOM in another section. +We use console object methods to show output on the browser console and we use document.write to show output on the browser document(view port). Both methods are used only for testing and debugging purposes. The console method is the most popular testing and debugging tool on the browser. We use document.getElementById() when we like to interact with DOM try using JavaScript. We will cover DOM in another section. In addition to the famous, console.log() method, the console provides other more methods.