JSFiddle - React, Tailwind, and code Playground
HTML
<div id="haha"></div>
<div id="hehe"></div>
JavaScript
var text = "";
var i = 1;
var toko = "toko";
var buku = "buku";
var a = toko + buku;
while(i <= 25){
if (i % 3 === 0) {
text += toko;
}
if (i % 5 === 0) {
text += buku;
}
if ((i % 5 === 0) && (i % 3 === 0)) {
text += a;
}
text += i + "<br>";
i ++;
}
document.getElementById("haha").innerHTML = text;