Grammatical fix on line 1 (#26601)

Fixed sentence #2 under ##Output by adding "for"
pull/25585/head^2
Nikhil Wadekar 2018-12-21 06:24:45 +05:30 committed by Randell Dawson
parent 64cedbc1ea
commit 13f019eaa4
1 changed files with 1 additions and 1 deletions

View File

@ -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.