We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67b9b3e commit d6ed739Copy full SHA for d6ed739
how-to-write-code/Comments.js
@@ -1,12 +1,12 @@
1
- // This demo shows off comments!
+// This demo shows off comments!
2
3
- // console.log("This does not print.");
+console.log("This print now that I uncommented it.");
4
5
- console.log("Hello, World!"); // Comments do not have to start at the beginning of a line.
+console.log("Hello, World!"); // Comments do not have to start at the beginning of a line.
6
7
- /* Here is how
8
- to have
9
- multi-line
10
- comments. */
+/* Here is how
+to havecd
+multi-line
+comments. */
11
12
- console.log("Comments make your code more readable by others.");
+console.log("Comments make your code more readable by others.");
0 commit comments