Created
March 14, 2018 13:28
-
-
Save vldvel/42901e1f5267d51f9e887e426241c164 to your computer and use it in GitHub Desktop.
Notification properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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