其他分享
首页 > 其他分享> > JS立即执行函数

JS立即执行函数

作者:互联网

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<script>
    (function (a,b) {
        console.log(a);
        console.log(b);
    })(7,8);

</script>
</body>
</html>

在这里插入图片描述

标签:function,console,log,Title,JS,立即,函数
来源: https://blog.csdn.net/qq_45783660/article/details/116721254