I tried to run this code.
let a = b; //I'm sure that variable b is not defined.
Uncaught ReferenceError: b is not defined
I know this code causes this error.
b = 3;
Uncaught ReferenceError: b is not defined
let b = 3
Identifier 'b' has already been declared
Now, I can't put any String , Number,Null and Everything. And I can't define variable 'b'.
Is this Js Bug?