导航


HTML

CSS

JavaScript

浏览器 & 网络

版本管理

框架

构建工具

TypeScript

性能优化

软实力

算法

UI、组件库

Node

冷门技能

function test1() {
	var a = 1;
  return function() {
  	a++;
    console.log(a);
  }
}
var test = test1();
test();
test();
test();

Untitled

解除闭包内存

function test1() {
	var a = 1;
  return function() {
  	a++;
    console.log(a);
  }
}
var test = test1();
test();
test();
test();
test = null;

标记清除 mark and sweep

引用计数 reference counting