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.
在JavaScript中,有什么区别
var stack = {};
和
var stack = [];
第一个是空对象,第二个是空数组。