ReferenceError does not occurs?

56 Views Asked by At

I have a question about following code blocks

var x = "123" + y;

in this code block I am getting

Uncaught ReferenceError: y is not defined

but when I try something like this

var x = "123" + y;
var y = "456";

It works fine, so why? What is the difference?

0

There are 0 best solutions below