Skip to content

Instantly share code, notes, and snippets.

@theSekyi
Created January 25, 2018 08:59
Show Gist options
  • Select an option

  • Save theSekyi/a76cf80be8529b8bcc64689c58bf6b95 to your computer and use it in GitHub Desktop.

Select an option

Save theSekyi/a76cf80be8529b8bcc64689c58bf6b95 to your computer and use it in GitHub Desktop.
let newNavDaily = () =>
fetch(oldNavUrl)
.then(resp => {
return resp.json();
})
.then(data => {
let nav = data.payload.nav;
return nav;
});
newNavDaily().then(console.log);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment