Skip to content

Commit 3f3196d

Browse files
committed
fixed undefined var
1 parent e48395f commit 3f3196d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const missingSemicolon = 'This line is missing a semicolon';
2424

2525
// Error: Trying to reassign a constant
2626
const constantValue = 42;
27-
constantValue = 43;
27+
//constantValue = 43;
2828

2929
// Error: Missing function argument
3030
function missingArgument(arg1, arg2) {

0 commit comments

Comments
 (0)