關閉通知

你可以使用 .close() 方法關閉通知。

let notification = new Notification(title, options);
// do some work, then close the notification
notification.close()

你可以利用 setTimeout 功能在將來的某個時間自動關閉通知。

let notification = new Notification(title, options);
setTimeout(() => {
    notification.close()
}, 4000);

上面的程式碼將生成一個通知,並在 4 秒後關閉它。