Skip to content

Instantly share code, notes, and snippets.

@vldvel
Created March 15, 2018 12:15
Show Gist options
  • Save vldvel/9d1a0ab44566ac9da83266539ddf762e to your computer and use it in GitHub Desktop.
Save vldvel/9d1a0ab44566ac9da83266539ddf762e to your computer and use it in GitHub Desktop.
Notification close simple
const notification = new Notification('Hello world!');
setTimeout(() => {
notification.close();
}, 600);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment