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('饅頭','啤酒')); //饅頭 啤酒