Skip to content

Commit 1600b73

Browse files
authored
Missing semicolon
1 parent 7d1d2df commit 1600b73

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

problems/scope/problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const a = 1; const b = 2; const c = 3;
5252
const a = 7; const c = 9;
5353

5454
(function fourthFunction () {
55-
const a = 1; const c = 8
55+
const a = 1; const c = 8;
5656
})()
5757
})()
5858
})()

0 commit comments

Comments
 (0)