Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- 안드로이드
- OGNL
- Eclips
- Graphic
- Java
- 클래스
- mybatis
- AWT
- 오버로딩
- Spring
- struts2
- 국제화
- 이클립스
- JavaScript
- Menu
- 예외처리
- 배열
- 어노테이션
- 생성자
- HTML
- JSP
- 에러페이지
- 메서드
- 전화걸기
- 기본
- oracle
- paint
- 메소드
- Android
- layout
Archives
- Today
- Total
note
toString() 메서드 본문
<!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 |