

๋จผ์ ์ด ๊ธ์ MDN์ Nullish coalescing operator ์ค๋ช ํ์ด์ง๋ฅผ ์ฐธ์กฐํ์์์ ๋ฐํ๋ค.
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing_operator
null๋ undefined๋ผ๋ฉด ๊ทธ ??์ ์ค๋ฅธ์ชฝ ๊ฐ์ ๋์
ํ๋ค.OR(||) ์ฐ์ฐ์๋ผ๊ณ ์๊ฐํ ์ ์๋ค.const a = b ?? "age"
b๊ฐ ์ ํจํ ๋ณ์๋ผ๋ฉด ๊ทธ ๊ฐ์ a์ ๋์
ํ๋ค.b๊ฐ null์ด๊ฑฐ๋ undefined์ด๋ผ๋ฉด ๊ทธ ๋ค์ ์๋ age ๋ฌธ์์ด์ a์ ๋์
ํ๋ค.