블리언 함수
// Boolean const isTrue = new Boolean(true); console.log(isTrue.valueOf());
/** * Falshy * 0 * -0 * null * NaN * undefined * '' */
/** * Truthy * 1 * -1 * '0' * 'false' * [] * {} */
- Bloolean 이라는 생성자 함수로 만들 수 있다.
하지만 객체를 사용하면 메모리를 더 소비 하기 때문에 객체로 사용 하지 않는다.- MDN Boolean: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean