아래 값들을 Boolean()으로 변환해 출력해보세요.const a = 0; const b = 'hello'; const c = '';
const a = 0; const b = 'hello'; const c = ''; console.log(Boolean(a)); // false console.log(Boolean(b)); // true console.log(Boolean(c)); // false