Skip to content

Instantly share code, notes, and snippets.

@andregardi
Created September 12, 2020 12:46
Show Gist options
  • Save andregardi/0f77cf3975ff1c288b18510cc8292ef2 to your computer and use it in GitHub Desktop.
Save andregardi/0f77cf3975ff1c288b18510cc8292ef2 to your computer and use it in GitHub Desktop.
const state = {
cities: [
{
name: "Chicago",
state: "Illinois",
population: [
{
year: 2020,
population: 2713984
}
],
weatherStatus: {
lat: 40.12,
lon: -96.66,
timezone: "America/Chicago",
current: {
temp: 293.28,
wind_speed: 4.6,
weather: [
{
id: 501,
description: "Moderate rain",
icon: "10n"
}
]
}
}
}
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment