키가 있는 컬렉션은 인덱스가 아닌 키로 정렬된 데이터 컬렉션입니다. 그들은 본질적으로 연관되어 있습니다. 지도 및 집합 개체는 키가 있는 컬렉션이며 삽입 순서대로 반복할 수 있습니다.
다음은 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: 20px; font-weight: 500; color: blueviolet; } </style> </head> <body> <h1>Keyed collections in JavaScript</h1> <div class="result"></div> <br /> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to create and display the object</h3> <script> let resEle = document.querySelector(".result"); let BtnEle = document.querySelector(".Btn"); BtnEle.addEventListener("click", () => { let obj = { name:'Rohan', age:22, occupation:'Student', }; for(i in obj){ resEle.innerHTML += `key = ${i} : value = ${obj[i]} <br>`; } }); </script> </body> </html>
출력
'여기를 클릭' 버튼을 클릭하면 -