67、立即执行函数

yu
yu
2024-10-04 / 0 评论 / 4 阅读 / 正在检测是否收录...
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        // let num = 10
        // let num = 20
        // (function(){
        //     console.log(11)
        // })()

        // (function(){
        //     let num = 10
        // })();
        // (function(){
        //     let num = 20
        // })();
        // 1、第一种写法
        (function(x, y){
            console.log(x + y)
        })(1, 2);
        // (function(){})();
        // 2、第二种写法
        (function(){}());
        (function(x, y){
            console.log(x + y)
        }(1, 3));
    </script>
</body>
</html>
0

评论 (0)

取消