function breakfast(dessert = 'cake',drink = 'tea'){ return `${dessert} ${drink} ` } console.log(breakfast()); //cake tea
function breakfast(dessert = 'cake',drink = 'tea'){ return `${dessert} ${drink} ` } console.log(breakfast('馒头','啤酒')); //馒头 啤酒