Skip to content

Instantly share code, notes, and snippets.

@danielevns
Created November 1, 2017 19:32
Show Gist options
  • Save danielevns/b1dca3a5c1f70582cc9bec475578841f to your computer and use it in GitHub Desktop.
Save danielevns/b1dca3a5c1f70582cc9bec475578841f to your computer and use it in GitHub Desktop.
function gong() {
const audio = new Audio("https://bustadice.com/5bb187b7ef764e76fb519939f77288c1.mp3")
audio.play()
return new Promise(resolve => audio.onended = resolve)
}
await gong()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment