Skip to content

Instantly share code, notes, and snippets.

@jonchretien
Created February 3, 2017 14:56
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 jonchretien/1ac52605c9f016c76a4e940af8fa5076 to your computer and use it in GitHub Desktop.
Save jonchretien/1ac52605c9f016c76a4e940af8fa5076 to your computer and use it in GitHub Desktop.
(async () => {
const response = await fetch('https://api.spotify.com/v1/tracks/6JEK0CvvjDjjMUBFoXShNZ');
const { name } = await response.json();
console.log(name);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment