JSFiddle - React, Tailwind, and code Playground

by Daniel Lisik

JavaScript

if (Notification) {
    alert('funkar');
    Notification.requestPermission();
    
    
var options = {
      body: 'chena',
      icon: 'bild.png',
  }
	var n = new Notification('Emogotchi says', options);
  	setTimeout(n.close.bind(n), 35000); 
    
} else {
	alert('naaaaj');   
}