Skip to content

Commit b28c72a

Browse files
author
Markus Amalthea Magnuson
committed
Remove incorrect end parenthesis.
1 parent 110b3d6 commit b28c72a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

page/javascript-101/scope.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ If you declare a variable and forget to use the `var` keyword, that variable is
4040
```
4141
function myFunc() {
4242
x = 5;
43-
});
43+
};
44+
4445
console.log( x ); // 5
4546
```
4647

0 commit comments

Comments
 (0)