let
numberOfApplesEaten
=
3
;
numberOfApplesEaten
=
7
;
We define a new
variable
with the
value
of
3
.
We take the variable from previous line that has the value of 3.
And update it. After this line it will have the
value
of
7
.