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.
例如:
var test = [1,2,3,4,5]; test.length = 0;
这是释放变量内存的好方法test吗?
test
不用担心,这只会使您的代码更长。将变量保持在最严格的范围内,如果不再需要,它应该由垃圾收集系统处理。