<script>
function ab1() {
var a = 1;
function ab2() {
alert(1);
}
return ab2
}
var fun = ab1();
fun();
</script>
函数本身和访函数声明时所处的环境状态的组合,记忆性,模拟私有变量的特性。