Local Values
Local values assign a name to an expression, that can then be used multiple times within a folder.
If variables are analogous to function arguments then local values are comparable to a function's local variables.
Examples
Local values are defined in locals
blocks:
Description
The locals
block defines one or more local variables.
The names given for the items in the locals
block must be unique. The given
value can be any expression that is valid within the current file.
The expression of a local value can refer to other locals, but reference cycles are not allowed. That is, a local cannot refer to itself or to a variable that refers (directly or indirectly) back to it.
It's recommended to group together logically-related local values into a single block, particularly if they depend on each other. This will help the reader understand the relationships between variables. Conversely, prefer to define unrelated local values in separate blocks, and consider annotating each block with a comment describing any context common to all of the enclosed locals.