You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log(fn);//undefined
var fn = () => {};
var fn;
console.log(fn);//() => {}
var fn = 2;
console.log(fn);//2
var a = 3;
var b = 4;
test = () => {
console.log(a);//undefined
console.log(b);//4
var a = 1;
};
test();
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: