* 자료형 검사 - typeof 연산자

- 자료형을 확인할 때 주로 사용


<!-- typeof.html -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>typeof</title>
<script type="text/javascript">
	alert(typeof ('http://gangzzang.tistory.com')); // 문자열 String
	alert(typeof (450)); // 숫자 number
	alert(typeof (true)); // 불린 boolean
	alert(typeof (function() {})); // 함수 function
	alert(typeof ({})); // 객체 object
	alert(typeof (Gz)); // 정의하지않은 자료형 undefined
</script>
</head>
<body>
</body>
</html>


+ Recent posts