function breakfast(){ return ['cake','tea','apple']; }
var tmp =breakfast(), dessert=tmp[0],drink=tmp[1],fruit=tmp[2] console.log(dessert,drink,fruit) //cake tea apple
let [dessert,drink,fruit]=breakfast(); console.log(dessert,drink,fruit) //cake tea apple