??1 JS_๊ธฐ๋ณธ ๋ฌธ๋ฒ (15)_์ฐ์ฐ์(์ผํ, null๋ณํฉ(??) ) ์ง๊ธ๊น์ง ์ดํด๋ณธ ๊ฒ ์ธ์ ์ฐ์ฐ์๋ค์ ๋ํด์๋ ์์๋ณด์! 1. ์ผํ ์ฐ์ฐ์ ์ผ์ชฝ๋ถํฐ ์ฐจ๋ก๋ก ์คํ๋๋ฉฐ, ๊ฐ์ฅ ๋ง์ง๋ง ์ฐ์ฐ์ ๋ฐํํ๋ค. console.log( (1,2,3) ); >>> 3 console.log( (10/2, 5%2, 1+1) ); >>> 2 ์ด์ฒ๋ผ ๊ฐ์ฅ ๋ง์ง๋ง ์ฐ์ฐ์ ๊ฐ์ ๋ฐํํ๋ค! 2. null ๋ณํฉ ์ฐ์ฐ์ ?? null ๋๋ undefined๋ฅผ ๊ฑธ๋ฌ๋ผ ์ ์๋ ์ฐ์ฐ์์ด๋ค. ์ฆ, ์์ ์์๊ฐ ๋ ์ค ํ๋์ผ ๊ฒฝ์ฐ ๋ค์ ์์๋ก ๋์ฒด๊ฐ ๊ฐ๋ฅํ๋ค! let x;//undefined x ?? console.log('Hello'); x = null;//null x ?? console.log('Hello'); x = 0; x ?? console.log('Hello'); //0์ ๋ฐํํ๊ณ ์ข ๋ฃ x = 1;.. 2023. 2. 26. ์ด์ 1 ๋ค์ ๋ฐ์ํ