函数扩展

函数新增特性

  • 参数默认值
  • rest参数
  • 扩展运算符
  • 箭头函数
  • this绑定
  • 尾调用

    参数默认值

function test(x, y = 'world'){
    console.log('默认值',x,y)
}
test('hello')
//默认值 hello world
test('hello', 'me')
//默认值 hello me
let x = 'test';
function test2(x, y = x){
    console.log('作用域', x, y);
}
test2('me');
//作用域 me me
test2();
//作用域 undefined undefined 

rest参数

function test3(...args){
    for(let v of args){
        console.log('rest',v);
    }
}
test3(1,2,3,4,'a')
/**
* rest ⇒ 1
* rest ⇒ 2
* rest ⇒ 3
* rest ⇒ 4
* rest ⇒ a
*/

扩展运算符

console.log(...[1,2,4]);
//1 2 4
console.log('a',...[1,2,3]);
//a 1 2 3

箭头函数

let arrow = v => v*2;
console.log('arrow', arrow(3));
//arrow ⇒ 6
let arrow = () => 5;
console.log(arrow());
//5

this绑定

let obj = {
    fn:function(){
        setTimeout(() => {
            console.log(this);
        });
    }
}
obj.fn();//object this指向函数的宿主对象

尾调用

function tail(x){
    console.log('tail',x);
}
function fx(x){
    return tail(x);
}
fx(123)
//tail ⇒ 123
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值