Skip to content

Instantly share code, notes, and snippets.

@matthieua
Created October 30, 2019 10:41
Show Gist options
  • Save matthieua/3748badcaf36a5787f5f63ada9cfb589 to your computer and use it in GitHub Desktop.
Save matthieua/3748badcaf36a5787f5f63ada9cfb589 to your computer and use it in GitHub Desktop.
let weather = {
"paris": {
temp: 19.7,
humidity: 80
},
"tokyo": {
temp: 17.3,
humidity: 50
},
"lisbon": {
temp: 30.2,
humidity: 20
},
"san francisco": {
temp: 20.9,
humidity: 100
},
"moscow": {
temp: -5,
humidity: 20
}
};
// write your code here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment