Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 6ece480

Browse files
Update 05_CodeComments.md
1 parent 21e31e8 commit 6ece480

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎05_CodeComments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ As you can see above, you can mix and match both types of comments.
3232

3333
Comments are used to explain code, call attention to parts of the program, inform about licenses and copyrights, and they can also be used to organize your thoughts before writing a program: you can write the pseudocode for your program as comments and then add the actual Javascript commands or replace the comments with commands to implement the pseudocode.
3434

35-
You will see this in this course exercises. The exercises are contained in numbered folders under the `exercises` folder. Every exercise is one or more files that contains instructions as comments. For example, this is exercise number one (file `HelloWorld.js` in the `ex01` folder):
35+
You will see this in this course exercises. The exercises are contained in numbered folders under the `Exercises` folder. For example `\Exercises\ex01`, '\Exercises\ex02`, and so on. Every exercise is one or more source code files, and they contain instructions as comments. For example, this is exercise number one (file `HelloWorld.js` in the `ex01` folder):
3636
```
3737
// Write a program that prints the string "Hello, World!" using the console.log function
3838
// You should write your code in place of the comment below that reads // place your code here
@@ -41,7 +41,7 @@ You will see this in this course exercises. The exercises are contained in numbe
4141
4242
// place your code here
4343
```
44-
In this case all you have to do is replace the last comment line with your code. Try doing this and running the program using Node.js.
44+
In this case all you have to do is replace the last comment line with your code. You will do it in the next page, when you learn about IO and Hello World
4545

4646
[Back to course outline](https://github.com/mbarsott/LearnProgrammingWithJavascript/blob/master/README.md#learn-programming-with-javascript)
4747

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /