11.html-기본타입(불린(boolean))

CODEDRAGON Development/JavaScript, jQuery, ...

반응형

 

 

 

기본타입(불린(boolean))

true와 false값을 나타내는 타입

 

 

   

소스 코드

<html>

<head>

<meta charset="EUC-KR">

<title>boolean</title>

<script type="text/javascript">

//boolean

var booleanVar = true;                        

document.write('booleanVar: ' + typeof booleanVar + '<br>');

</script>

</head>

<body>

</body>

</html>

   

 

출력결과   

   

 

 

반응형