#javascript
Read more stories on Hashnode
Articles with this tag
document .getElementById("scrollTo") .scrollIntoView({ behavior: "smooth", block: "start" });
const speak = (msg) => { const sp = new SpeechSynthesisUtterance(msg); [sp.voice] = speechSynthesis.getVoices(); ...