JavaScript Array 프로토타입 생성자는 배열 객체에 새로운 메서드와 속성을 추가하기 위한 것입니다. 이러한 속성과 메서드는 각 배열에 사용할 수 있습니다.
다음은 배열 프로토타입 생성자에 대한 코드입니다 -
예시
<!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; } .sample { font-size: 20px; font-weight: 500; } </style> </head> <body> <h1>JavaScript Array prototype Constructor</h1> <div class="sample"></div> <button class="Btn">CLICK HERE</button> <h3> Click on the above button to convert the string to upper and lowercase alternatively </h3> <script> Array.prototype.upperLower = function () { for (let i = 0; i < this.length; i++) { if (i % 2 == 0) this[i] = this[i].toUpperCase(); else this[i] = this[i].toLowerCase(); } }; let fillEle = document.querySelector(".sample"); let arr = ["H", "E", "L", "L", "O"]; fillEle.innerHTML = arr; arr.upperLower(); document.querySelector(".Btn").addEventListener("click", () => { fillEle.innerHTML = arr; }); </script> </body> </html>
출력
"여기를 클릭" 버튼을 클릭하면 사용자 지정 배열 기능이 호출됩니다 -