function breakfast(){ return {dessert:'cake',drink:'tea',fruit:'apple'}; } let {dessert:dessert,drink:drink,fruit:fruit}=breakfast(); //cake tea apple
function breakfast(dessert,drink,{location,resturant}={}){ console.log(dessert,drink,location,resturant) } breakfast('cake','tea',{location:'濟南',resturant:'董小姐'}) //cake tea 濟南 董小姐