File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ A statement is more casually (and commonly) known as a *line of code*. That's be
88
99Here is a simple example:
1010
11- ``` js
11+ ``` javascript
1212var hello = " Hello" ;
1313var world = " World" ;
1414
Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ In Javascript, comments can be written in 2 different ways:
66
77* Line starting with ` // ` :
88
9- ``` js
9+ ``` javascript
1010// This is a comment, it will be ignored by the interpreter
1111var a = " this is a variable defined in a statement" ;
1212```
1313
1414* Section of code starting by ` /* ` and finishing by ` */ ` , this method is used for multi-lines comments:
1515
16- ``` js
16+ ``` javascript
1717/*
1818This is a multi-lines comment,
1919it will be ignored by the interpreter
You can’t perform that action at this time.
0 commit comments