100-project-100-days-website/100_projects/9-javaScript-auto-write-text/script.js

11 lines
265 B
JavaScript
Raw Normal View History

2023-03-02 17:26:29 +03:00
const text = "She Is My Queen I Love Her Eyes So Much 🤍 ";
let index = 0;
function writeText() {
document.body.innerText = text.slice(0, index);
index++;
if (index > text.length) {
index = 0;
}
}
setInterval(writeText, 100);