Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么让 a= 10; 变量 a = 10;
抛出无法重新声明“a”的错误,据我所知,让变量成为 js 中脚本对象的一部分,而 var 成为全局对象的一部分。那为什么我会看到这个错误?
我认为它与块和功能范围有关,但不知何故我无法在这种情况下使用它。