Sau đây là mã để phá vỡ vòng lặp trong lập trình chức năng -
Ví dụ
<!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 { font-size: 18px; font-weight: 500; color: rebeccapurple; } </style> </head> <body> <h1>Breaking a loop in functional programming JavaScript</h1> <div class="result"></div> <button class="Btn">Click here</button> <h3>Click on the above button to iterate fruitArr array and exit if peach is found</h3> <script> let resEle = document.querySelector(".result"); let fruitArr = ["apple", "mango", "peach", "papaya", "watermelon"]; document.querySelector(".Btn").addEventListener("click", () => { fruitArr.some(function (fruit) { if (fruit === "peach") { return true; } resEle.innerHTML += fruit + "<br>"; }); }); </script> </body> </html>
Đầu ra
Khi nhấp vào nút 'Nhấp vào đây' -