Skip to content

Instantly share code, notes, and snippets.

@vldvel
Created March 14, 2018 13:28
Show Gist options
  • Save vldvel/42901e1f5267d51f9e887e426241c164 to your computer and use it in GitHub Desktop.
Save vldvel/42901e1f5267d51f9e887e426241c164 to your computer and use it in GitHub Desktop.
Notification properties
const notificationProps = {
title: 'I\'m notification',
body: 'Here is my desription',
icon: 'https://avatars1.githubusercontent.com/u/22643415',
vibrate: [50, 100, 150]
}
const myNotification = new Notification(notificationProps.title, notificationProps);
console.log(myNotification.title); // 'I\'m notification'
console.log(myNotification.body); // 'Here is my desription'
console.log(myNotification.icon); // 'https://avatars1.githubusercontent.com/u/22643415'
console.log(myNotification.vibrate); // [50, 100, 150]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment