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)
While the above works, it’s not recommended and will display errors.
More Info