note

instanceof 키워드 본문

JavaScript/기본

instanceof 키워드

투한 2012. 3. 14. 09:43













<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
	//생성자 함수를 선언합니다.
	function Student(name){this.name = name;}
	//변수를 선언합니다.
	var student = new Student('윤인성');
	//출력합니다.
	alert(student instanceof Student);
	alert(student instanceof Number);
	alert(student instanceof String);
	alert(student instanceof Boolean);
</script>
</head>
<body>

</body>
</html>


타입을 알아내기 위한 instanceof 키워드
 





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

기본 자료형과 객체  (0) 2012.03.14
게터와 세터  (0) 2012.03.14
prototype 을 이용한 메서드 생성  (0) 2012.03.14
생성자 함수를 사용한 객체의 생성과 출력  (0) 2012.03.13
학생 성적 출력  (0) 2012.03.13