aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter0_basics/lesson09_assignments/text.html
blob: 6d535de6d19f50e800e4092cad862cf1957b32e5 (plain)
1
2
3
4
5
6
7
8
<p>
  A value can be assigned to a variable using <code>let</code>.
</p>
<p>
  Variable names can be reused by later let bindings, but the values they
  reference are immutable, so the values themselves are not changed or mutated
  in any way.
</p>