diff --git a/guide/english/javascript/comments/index.md b/guide/english/javascript/comments/index.md index 105f30beae..60873d0a01 100644 --- a/guide/english/javascript/comments/index.md +++ b/guide/english/javascript/comments/index.md @@ -53,7 +53,7 @@ function addTwoNumbers(num1, num2) { } console.log(addTwoNumbers(10,20)) // will print 30 in the console. -You can also prevent execution of Javascript code just commenting the code lines like this: +In some cases you may want to prevent code from running for debugging purposes. For example: ```javascript function hello() { /*console.log("Hello world!");*/