js原生设计模式——2面向对象编程之闭包2

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>closure的自调用函数式写法</title>
    <script type="text/javascript">
    var a = (function(name){
        var n = name;
        return function(){
            console.log(n);
        }
    })('Lucy');
    a();
    //本例已经通过验证
    </script>
</head>
<body>
    
</body>
</html>

上一篇:Linux PCI/PCI-E设备配置空间读取与修改


下一篇:Google Chrome 源码下载地址 (Google Chrome Source Code Download)