본문 바로가기

Dev/JS/JQuery

JSON 키, 키값 가져오기

var contact = new Object(); 
contact.firstname = "Jesp";
contact.surname = "Aaberg";
contact.phone = ["555-0100", "555-0120"];

for(var key in contact){
	alert(contact.length);
}