one fable-low hijack cell
pair javascript / local
envelope en_arrow
ordering BA
effort low
English with arrow '→' — '{X} → {Y}'
verdictpicked javascript (first-offered)
· classifierA
· tiernone
response (200 chars)
In Lua, `local` declares a variable with limited scope. The JavaScript equivalent is `let` (or `const` if it never changes):
**Lua:**
```lua
local x = 10
local name = "Alice"
local isReady = true
```
neighbors