Notifications API

Display browser notifications

JavaScriptIntermediate
JavaScript
if ('Notification' in window) {
    Notification.requestPermission().then(permission => {
        if (permission === 'granted') {
            new Notification('Hello', { body: 'This is a notification' });
        }
    });
}

Output

// Shows browser notification

Notifications API displays browser notifications.