for문 1~100 배열로 나타내기

imjingu·2023년 7월 17일
0

개발공부

목록 보기
127/481
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        for (let i = 1; i <= 100; i++) {
            if (i < 10) {
                document.write('<span style="color:white">0</span>');
            }
            document.write(`${i}&nbsp&nbsp&nbsp&nbsp&nbsp;`); //&nbshp : 간격을 띄워줌
            if(i % 10 === 0) {
                document.write('<br>');
            }
        }
    </script>
</body>
</html>

0개의 댓글