728x90 반응형 null1 [기본문법 2]boolean, null, undefined // boolean // == True | False const amIFat = true; console.log(amIFat); // 사용처 // 로그인 여부, 비디오 재생 여부, 웹사이트 여부 print('/////////////////////////////////////////') // null - 값이 존재하지 않음 | 비어있다기보다는, 아무것도 없는 상태 const test = null; let someThing; // undefined 데이터 타입 // something라는 variable을 만들고 있지만, 값을 주고 있지 않은 상태 // 컴퓨터 메모리 안에는 존재하지만 값이 정의되지 않음 console.log(test); console.log(someThing); 2023. 1. 30. 이전 1 다음 728x90 반응형