Skip to content

Commit 4f22846

Browse files
committed
solved error 2
1 parent c0d7fe1 commit 4f22846

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • Sprint-1/2-mandatory-errors

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

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

3-
const age = 33;
3+
let age = 33;
44
age = age + 1;
5+
6+
// changed the variable from const (which cannot be reassigned) to let

0 commit comments

Comments
 (0)