본문 바로가기
Javascript

JS for...in 문..

by windrises 2012. 12. 27.

// Initialize the array.
var arr = new Array("zero","one","two");

// Add a few expando properties to the array.
arr["orange"] = "fruit";
arr["carrot"] = "vegetable";

// Iterate over the properties and elements.
var s = "";
for (var key in arr) {
    s += key + ": " + arr[key];
    s += "<br />";
}

document.write (s);

// Output:
//   0: zero
//   1: one
//   2: two
//   orange: fruit
//   carrot: vegetable


아.. 공부좀 하자.. 

'Javascript' 카테고리의 다른 글

jQuery api & samples  (1) 2012.11.22
window.alert override  (0) 2008.10.16
js 페이징과련 함수  (1) 2008.05.09