-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
bugSomething isn't workingSomething isn't working
Description
alert(undefined); // ReferenceError: undefined is not defined
let undefined = 0;
alert(undefined); // 0
undefined = 3;
alert(undefined); // 3可能和#2 有关
这一段代码似乎有误
虽然let会提升,但是let undefined 在Chrome(76.0.3809.100)/Node(v12.8.0)/Safari(13.0)都会报错, 大概是浏览器太老了?
而且有个标点错了(
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working