SOURCE

// 函数 形参 没有传参就直接使用默认值
const add = (function(){
    return function add(number,value =1){
        return number + value;
    };
}) ();
console.log(add(10,2)); // 传参使用传参
console.log(add(10));    // 不传参 使用默认值
console 命令行工具 X clear

                    
>
console