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.