Is “var” optional?
myObj = 1;
same as ?
var myObj = 1;
I found they both work from my test, I assume var
is optional. Is that right?
Is “var” optional?
myObj = 1;
same as ?
var myObj = 1;
I found they both work from my test, I assume var
is optional. Is that right?