블리언 함수

박현석·2022년 8월 25일
1

Javascript ES6+

목록 보기
47/88

블리언 함수

// Boolean
const isTrue = new Boolean(true);
console.log(isTrue.valueOf());
/**
 * Falshy
 * 0
 * -0
 * null
 * NaN
 * undefined
 * ''
 */
/**
 * Truthy
 * 1
 * -1
 * '0'
 * 'false'
 * []
 * {}
 */
profile
선한 영향력을 주는 사람

0개의 댓글