From 13f019eaa42b61047d4db58473065b34f915a070 Mon Sep 17 00:00:00 2001 From: Nikhil Wadekar Date: Fri, 21 Dec 2018 06:24:45 +0530 Subject: [PATCH] Grammatical fix on line 1 (#26601) Fixed sentence #2 under ##Output by adding "for" --- guide/english/javascript/output/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/output/index.md b/guide/english/javascript/output/index.md index 6665c9d3ca..6b339be9d3 100644 --- a/guide/english/javascript/output/index.md +++ b/guide/english/javascript/output/index.md @@ -3,7 +3,7 @@ title: Output --- ## Output -There are 4 common ways in which data can be output to the console. These will be the primarily used output methods as part of your development process. +There are 4 most common ways you will be outputting your data through console. These will be used for the most part of your development process. #### `console.log` It is the most commonly used way to output the data. It's a common practice to insert a couple of these between statements to uderstand how the data is flowing and processed. Also, you can use `debugger` or breakpoints in devtools to do the same without polluting your code.