Skip to content

Commit 07321e1

Browse files
committed
Update variables.md
1 parent add3ef5 commit 07321e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

basics/variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The same is true for programming languages. In programming, variables are contai
4343

4444
Let's check out how it works in Javascript, The following code defines two variables, computes the result of adding the two and defines this result as a value of a third variable.
4545

46-
```
46+
```js
4747
var x = 5;
4848
var y = 6;
4949
var result = x + y;

0 commit comments

Comments
 (0)