객체와 반복문 for~in
(Object & Iterate)
Last updated
Was this helpful?
(Object & Iterate)
Last updated
Was this helpful?
객체의 반복을 위한 for~in문 가져오는 법 :
search : javascript object iterate
for(var key in coworkers)
{document.write(key + ' : ' + coworkers[key] + '<br>');
}
<h1>Object</h1>
<h2>Create</h2>
<script>
var coworkers = {
"programmer":"egoing",
"designer":"leezche"
};
document.write("programmer : " + coworkers.programmer + "<br>");
document.write("designer : " + coworkers.designer + "<br>");
coworkers.bookkeeper = "duru";
document.write("bookkeeper : " + coworkers.bookkeeper + "<br>");
coworkers["data scientist"] = "taeho";
document.write("data scientist : " + coworkers["data scientist"] + "<br>");
</script>
<h2>Iterate</h2>
<script>
for(var key in coworkers){
document.write(key + ' : ' + coworkers[key] + '<br>');
}
</script>
key : 객체에 소속된 변수이자 프로퍼티(property) ex) programmer
coworkers[key] : 프로퍼티의 정보이자 배열 (설명이 정확한지 확실치X) ex) egoing
배열은 key가 아니라 index