다음은 JavaScript에서 함수가 다른 함수를 반환하는 코드입니다 -
예시
<!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: blueviolet; } </style> </head> <body> <h1>Function returning another function in JavaScript</h1> <div class="result"></div> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to double the number</h3> <script> let BtnEle = document.querySelector(".Btn"); let resEle = document.querySelector(".result"); function test() { let b = 1; return function () { resEle.innerHTML = "Number = " + (b *= 2); }; } let returnFunc = test(); BtnEle.addEventListener("click", () => { returnFunc(); }); </script> </body> </html>
출력
'CLICK HERE' 버튼을 클릭하면 클릭할 때마다 숫자가 2씩 증가합니다. −