Skip to content

Commit 041e4fc

Browse files
Refix 1.js in second section.
1 parent 62e8714 commit 041e4fc

File tree

1 file changed

+1
-1
lines changed
  • Sprint-1/2-mandatory-errors

1 file changed

+1
-1
lines changed

Sprint-1/2-mandatory-errors/1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// trying to create an age variable and then reassign the value by 1
22

33
let age = 33;
4-
age = age++;
4+
age += 1 ;
55

66
console.log(age);
77

0 commit comments

Comments
 (0)