let b = 10
x: a = b
b // 10
a // 10
x // Uncaught ReferenceError: x is not definedWhat is x and how a exists without declaring it first?
let b = 10
x: a = b
b // 10
a // 10
x // Uncaught ReferenceError: x is not definedWhat is x and how a exists without declaring it first?