Karaoke with promises
--- START --------------------------------------------
const n=document.getElementById("lyrics"),e="<p><span>1</span> I, I will be king</p>",p="<p><span>2</span> And you, you will be queen</p>",t="<p><span>3</span> Though nothing will drive them away</p>",s="<p><span>4</span> We can beat them, just for one day</p>",a="<p><span>5</span> We can be heroes, just for one day</p>",i=(n=2e3)=>new Promise(e=>setTimeout(e,n));n.innerHTML+="<p>--- START --------------------------------------------</p>",i().then(()=>(n.innerHTML+=e,i())).then(()=>(n.innerHTML+=p,i())).then(()=>(n.innerHTML+=t,i())).then(()=>(n.innerHTML+=s,i())).then(()=>(n.innerHTML+=a,i())).then(()=>(n.innerHTML+="<p>--- END ----------------------------------------------</p>",i())).then(()=>console.log("lyrics written to page"));
//# sourceMappingURL=karaoke.js.map