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>
출력결과
'Development > JavaScript, jQuery, ...' 카테고리의 다른 글
형변환 (0) | 2021.12.31 |
---|---|
12.html-기본타입(null과 undefined) (0) | 2021.12.24 |
10.html-기본타입(문자열) (0) | 2021.12.23 |
05.html-기본타입(숫자), 자바스크립트 나눗셈 연산 (0) | 2021.12.23 |
04.html-주석 및 출력 (0) | 2021.12.20 |