Untitled

 avatar
unknown
javascript
2 years ago
181 B
2
Indexable
const HIGH_TEMPERATURES = {
  yesterday: 75,
  today: 77,
  tomorrow: 80
};
  
const {today: highToday, tomorrow : highTomorrow} = HIGH_TEMPERATURES;
console.log(HIGH_TEMPERATURES);
Editor is loading...