Assignments

A value can be assigned to a variable using let.

let を使って変数に値を代入することができます。

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.

その後の let バインディング(つまり代入)で変数名を再利用することができますが、参照する値は不変(イミュータブル)なので、値自体が変更されたり変化したりすることはありません。