๐ Reference
๐ย Chapter
Boolean๊ฐ๊ณผ ํจ๊ป ์ฐ์ด๋ฉฐ,ย Boolean๊ฐ์ ๋ฐํํ๋ฉฐ JavaScript๊ฐ ์ง์ํ๋ ๋
ผ๋ฆฌ ์ฐ์ฐ์๋ ์๋์ ๊ฐ๋ค.
||&&!
!!: ์ด์ค์ผ๋ก NOT์ ์ฌ์ฉํ ์ ์๋ค.leftExpr || rightExpr
falsy์ด๋ฉด rightExpr ์ฝ๋๊ฐ ์คํ๋๋ค.falseundefinednull0-0NaN""''
์์ 1
function printMessage(text) {
const message = text || 'Nothing to display';
console.log(message);
}
printMessage('Hello');
printMessage(undefined);
printMessage(null);
printMessage(0);
printMessage('');
Hello
Nothing to display
Nothing to display
Nothing to display
Nothing to display