Skip to content

Commit 41f14aa

Browse files
committed
Fix code type
1 parent d26488e commit 41f14aa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

basics/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A statement is more casually (and commonly) known as a *line of code*. That's be
88

99
Here is a simple example:
1010

11-
```js
11+
```javascript
1212
var hello = "Hello";
1313
var world = "World";
1414

basics/comments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
1111
var 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
/*
1818
This is a multi-lines comment,
1919
it will be ignored by the interpreter

0 commit comments

Comments
 (0)