使用解构对象的方法我们可以很容易为函数设定一个对象的参数
function breakfast(dessert,drink,{location,resturant}={}){ console.log(dessert,drink,location,resturant) } breakfast('cake','tea',{location:'济南',resturant:'董小姐'}) //cake tea 济南 董小姐
这个函数有两个必须的参数dessert、drink,第三个参数是一个对象,对象里面的东西是可选的,可以给个默认的值,这里默认为空,使用函数的时候不指定这个对象的参数,不会报错