FrontendDestructuring AssignmentEin Codebeispiel für Destructuring Assignment in JavaScript1 2 const temps = {yesterday: 70, today: 71, tomorrow: 72}; const {today: highToday, tomorrow: highTomorrow} = temps;