Learn, grow and help others with BBBootstrap
Contribute us with some awesome cool snippets using HTML,CSS,JAVASCRIPT and BOOTSTRAP
To flash title notification in Javascript ES6. we will use setInterval
function.
let showalert = false; const interval = setInterval(()=>{ document.title = showalert ? 'Chat Application' : '(1) New Message'; },1000);