[JS] Boolean 데이터 타입개발노트/Javascript2019. 10. 15. 21:57
Table of Contents
개념
Boolean은 데이터 타입중에서 한 종류 이다.
데이터 타입에는 Number, String, Boolean, Function, Object, Null, undefined, Array가 있다.
Boolean의 값으로는 true(참), false(거짓) 2개가 있다.
사용방법
비교 하기
console.log(1===1) // true 출력
console.log(1===2) // false 출력
👉 console.log(1==1) , console.log(1==2)
- 비교연산자를 써서 숫자 1 과 1이 맞으니깐 true를 출력하고 1 과 2가 다르니깐 false를 출력한다.
- 이렇게 데이터 타입을 비교하여 true 인지 false인지 알 수 있다.
조건문 사용하기
let booleanValue = true;
if(booleanValue){
console.log('참 입니다');
}else{
console.log('거짓 입니다');
}
// 참 입니다 출력
let booleanValue = true;
if(!booleanValue){
console.log('참 입니다');
}else{
console.log('거짓 입니다');
}
// 거짓 입니다 출력
👉 if(booleanValue){ console.log('참 입니다'); }
- let booleanValue 값이 true 이기 때문에 if문에서 console.log('참 입니다')만 출력된다.
👉 if(!booleanValue){ console.log('거짓 입니다'); }
- not연산자를 사용하여 boolean 값이 false일때 console.log('거짓 입니다')을 출력시킨다.
boolean 결과가 false로 나오는 값
0, -0, null, false, NaN, undefined, ""(빈 문자열) 면 boolean 값이 false가 됩니다.
'개발노트 > Javascript' 카테고리의 다른 글
(JS) map() (2019/10/23)(보충필요!!) (0) | 2019.10.23 |
---|---|
(JS) Closure 클로저 (2019/10/21)(보충필요!) (0) | 2019.10.21 |
(JS) filter() (2019/10/14)(보충필요!) (0) | 2019.10.14 |
(JS) 객체(Object) (2019/10/10) (0) | 2019.10.10 |
(JS) 함수형 프로그래밍 (2019/10/9) (0) | 2019.10.09 |
@superpil :: 주니어 개발자의 성장기
주니어 개발자의 성장 기록지
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!