Menu



Manage

파일 목록
Study_Web > 이후/test9.html Lines 28 | 657 바이트
다운로드

                        <!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script>
        const array = ['사과', '배', '귤', '바나나'];
        document.write('# for in 반복문 <br>');
        array.forEach((item, i) => {
            document.write(i, "<br>")
        });

        document.write('for of 반복문 <br>');
        array.forEach((item, i) => {
            document.write(item, "<br>");
        });
    </script>

</head>

<body>

</body>

</html>