1. 函数形参默认值

function fn(x = 10) {
    console.log(x);
}

fn();