Scope

This lesson will explain how the scope can affect the lifetime of an identifier.

We'll cover the following...

Global Scope

Throughout this section, we’ve been creating and manipulating data in the outermost layer of our ReasonML program. This layer is known as the global scope.

Variables created in the ...