There are two ways to create variables in modern JavaScript.

`let` is creates a normal variable, one for which the value can change at any time.

`const` is used when creating a varaible for which the value will never change.

let foo = "foo";

const bar = "bar";