📝 Edit on GitHub
Variables
Set type initially then change value.
let foo: boolean
foo = true
Or:
let foo = true
Types can be inferred but you can also do:
let foo: boolean = false