Skip to content

Instantly share code, notes, and snippets.

@stefanjudis
Created December 17, 2019 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stefanjudis/a1cdf967a7c7be7899acdf6225a37f9f to your computer and use it in GitHub Desktop.
Save stefanjudis/a1cdf967a7c7be7899acdf6225a37f9f to your computer and use it in GitHub Desktop.
Object.entries({ 1985: "foo", 1984: "bar", 1987: "baz" })
.reverse()
.forEach(([year, content]) => console.log(year, content));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment