for..of 루프를 사용하면 배열, 문자열, 개체와 같은 배열, 노드 목록 등과 같은 반복 가능한 개체를 반복할 수 있습니다.
다음은 자바스크립트의 for..of 루프에 대한 코드입니다 -
예시
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result,.sample { font-size: 20px; font-weight: 500; } </style> </head> <body> <h1>for..of loop JavaScript</h1> <div class="sample"></div> <div style="color: green;" class="result"></div> <button class="Btn">CLICK HERE</button> <h3> Click on the above button to iterate over the above string using for..of loop </h3> <script> let resEle = document.querySelector(".result"); let sampleEle = document.querySelector(".sample"); let str = "Hello"; sampleEle.innerHTML = str; document.querySelector(".Btn").addEventListener("click", () => { for (i of str) { resEle.innerHTML += i + "<br>"; } }); </script> </body> </html>
출력
위의 코드는 다음 출력을 생성합니다 -
'여기를 클릭' 버튼을 클릭하면 -