note

객체와 반복문 본문

JavaScript/기본

객체와 반복문

투한 2012. 3. 13. 09:42








<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>객체와 반복문</title>
<script>
	//변수를 선언합니다.
	var product = {
			name: 'Microsoft Visual Studio 2010 Ultimate',
			price: '15,000,000원',
			language: '한국어',
			supportOS: 'win32/64',
			subscription: true
	};
	//출력합니다.
	var output = '';
	for(var key in product){
		output += '●' + key + ' : ' + product[key] + '\n';
	} 
	alert(output);
</script>
</head>
<body>

</body>
</html>





'JavaScript > 기본' 카테고리의 다른 글

동적으로 메서드 추가  (0) 2012.03.13
in 키워드  (0) 2012.03.13
this 키워드  (0) 2012.03.13
숫자관련 내장함수 isFinite / isNaN  (0) 2012.03.12
eval() 함수  (0) 2012.03.12