11 lines
265 B
JavaScript
11 lines
265 B
JavaScript
{12df1a09305a362abd4b28c0462c21484519d454 true 265 script.js 0xc001c37b90}
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); |