学習過程の覚書です。
<script>
var i=1;
while (i <= 100) {
if (i%3 == 0 && i%5 == 0) {
document.write("<p>A</p>")
} else if ( i%3 == 0) {
document.write("<p>B</p>")
} else if (i%5 == 0) {
document.write("<p>AB</p>")
} else {
document.write("<p>"+i+"<br></p>") //その他の数字
}
i++;
}
</script>