04 【前端】函数优化.html


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>

        // 1、在ES6 以前我们无法给一个函数设置默认值,只能采用变通写法
        function add (a, b) {
            b = b || 1;
            return a + b;
        }
        // 传一个参数
        console.log(add(10));

        // 2、现在可以直接给参数上写默认值,没传就会自动使用默认值
        function add2(a, b=1) {
            return a + b;
        }
        // 传入一个参数
        console.log(add2(10));

        // 3、不定参数
        function fun(...values) {
            console.log(values.length)
        }

        fun(1, 2);
        fun(1, 2, 3, 4);

        // 4、箭头函数
        // 以前声明一个方法
        var print = function(obj) {
            console.log(obj);
        }

        var print = obj => console.log(obj);
        print("hello");

        var sum2 = (a, b) => a + b;
        console.log(sum2(1, 4));

        var sum3 = (a, b) => {
            c = a + b;
            return a + c;
        } 
        console.log(sum3(10, 20));


        const person = {
            name :"haoxiansheng",
            age : 23,
            language:["java", "linux", "vue"]
        }

        function hello(person) {
            console.log("hello," + person.name)
        }

        // 箭头函数 + 结构
        var hello2 = ({name}) => console.log("hello," + name);
        hello2(person);
    </script>
</body>
</html>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值