Syntax
lets(*variable*, *value*, *variable2*, *value2*, *...*, *expression*)
*variable*.lets(*value*, *variable2*, *value2*, *...*, *expression*)
Examples
lets(a, "Hello", b, "world!", a + " " + b)
a.lets("Goodbye", b, "world!", a + " " + b)
<aside> <img src="/icons/warning_yellow.svg" alt="/icons/warning_yellow.svg" width="40px" />
While the above works, it’s not recommended and will display errors.
</aside>
More Info