Skip to content

Instantly share code, notes, and snippets.

@procarrera
Created August 26, 2021 13:01
Show Gist options
  • Save procarrera/44934de7150e99dfe49a4e424c5904d3 to your computer and use it in GitHub Desktop.
Save procarrera/44934de7150e99dfe49a4e424c5904d3 to your computer and use it in GitHub Desktop.
async function getDetails (handle) {
const response = await window.fetch(`/products/${handle}.js`)
const data = await response.json()
console.log(data)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment