Undefined and Not defined in JS deep Dive
undefined = "Variable is there but no value is yet given to it"
not defined\= " Variable is not declared"
Understanding part
console.log("a: ",a); // undefined
console.log("b: ",b); // not defined
var a = 20;
Output :
why did this happen,๐ง
T...
test.clanflare.dev1 min read