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