Skip to content

Commit 63d0826

Browse files
authored
Update 07-statement.md
1 parent d6d98de commit 63d0826

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

notes/English/07-statement.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A computer program is a set of such statements. There can be multiple types of s
99
in a program code that controls the input and output of the actions that a program is
1010
designed for.
1111

12-
```
12+
```javascript
1313
let x = 10; //Single line statement
1414

1515
if (x < 20) {
@@ -29,7 +29,7 @@ separate line.
2929

3030
### WhiteSpace in statement
3131

32-
```
32+
```javascript
3333
let val = 10 ; //whitespace here doesnt matter
3434
let str = " Hello "; //Whitespace here will matter
3535
let num = 1 0; // this is not valid

0 commit comments

Comments
 (0)