null

JS

Booleans(불린), undefined, null

컴퓨터 과학에서, 불린(boolean)은 논리적인 데이터 유형이다. 불린은 참(true) 혹은 거짓(false) 값만을 가질 수 있다. 출처 : https://developer.mozilla.org/ko/docs/Glossary/Boolean 불린 - 용어 사전 | MDN 컴퓨터 과학에서, 불린(boolean)은 논리적인 데이터 유형이다. 불린은 참(true) 혹은 거짓(false) 값만을 가질 수 있다. 자바스크립트에서 불린 조건은 어떤 코드 부문이 실행되어야 할 지(예를 들어 i developer.mozilla.org 불린 값은 True(참=1) False(거짓=0) 두 가지의 값만을 가지고 있다. const amITall = false; console.log(amITall); -> false Js에..

HoyiTT
'null' 태그의 글 목록