note

toString() 메서드 본문

JavaScript/기본

toString() 메서드

투한 2012. 3. 14. 10:51










<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
	//변수를 선언합니다.
	var object = new Object();
	
	//출력합니다
	alert(object);
</script>
</head>
<body>

</body>
</html>








재선언







<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
	//변수를 선언합니다.
	var student = {
			name:'윤명월',
			grade:'대학교 1학년',
			toString : function() {
				return this.name + ' : ' + this.grade;
			}
	};
	
	//출력합니다
	alert(student);
</script>
</head>
<body>

</body>
</html>




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

length 속성  (0) 2012.03.14
String 객체의 생성  (0) 2012.03.14
생성자 함수에 메서드 추가  (0) 2012.03.14
기본 자료형에 메서드 추가  (0) 2012.03.14
기본 자료형과 객체  (0) 2012.03.14