+ 1
Why typeof var, const - error, but typeof let - undefined?
Hello! Why it code outputs "Unexpected token": typeof var; //error typeof const; //error But typeof let - undefined? typeof let; //undefined
1 Resposta
+ 2
It's interesting. I didn't know it.