JavaScript에서 클래스에 정적 메서드를 할당하려면 메서드에 static 키워드를 접두사로 붙이면 됩니다. 그러면 클래스를 인스턴스화하지 않고 정적 메서드를 호출할 수 있습니다.
다음은 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: rebeccapurple; } </style> </head> <body> <h1>Assign static methods to a class in JavaScript</h1> <div class="result"></div> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to add two numbers using static method of testClass</h3> <script> let resEle = document.querySelector(".result"); let BtnEle = document.querySelector(".Btn"); class testClass { constructor(fname, lname) { this.fname = fname; this.lname = lname; } static add(a, b) { resEle.innerHTML = a + " + " + b + " = " + (a + b); } } BtnEle.addEventListener("click", () => { testClass.add(22, 44); }); </script> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -
'여기를 클릭' 버튼을 클릭하면 -