Skip to content

Instantly share code, notes, and snippets.

@Margaret6556
Forked from matthieua/js-data-types.js
Created May 31, 2022 02:59
Show Gist options
  • Save Margaret6556/891f5d1c083a27849c7784783140c73c to your computer and use it in GitHub Desktop.
Save Margaret6556/891f5d1c083a27849c7784783140c73c 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