์ด๊ฒ์ ์๋ฐ์คํฌ๋ฆฝํธ ๋ฌธ๋ฒ๊น์ง๋ ์๋์ง๋ง, ์์๋ฌ์ผ ํ๋ ๊ฐ๋ ์ ๋๋ค. function print(person) { console.log(person.name); } const person = { name: 'John' }; print(person); ๋ง์ฝ์ ์ด๋ฌํ ์ํฉ์์, ๋ง์ฝ print ํจ์๊ฐ ๋ค์๊ณผ ๊ฐ์ด ํ๋ผ๋ฏธํฐ๊ฐ ๋น์ด์ง ์ฑ๋ก ์คํ๋๋ค๊ณ ๊ฐ์ ํด๋ณด๊ฒ ์ต๋๋ค. function print(person) { console.log(person.name); } const person = { name: 'John' }; print(); ์ด ์ฝ๋๋ ๋ค์๊ณผ ๊ฐ์ ์๋ฌ๋ฅผ ๋ฑ์ต๋๋ค. TypeError: Cannot read property 'name' of undefined ๋ง์ฝ์ print ํจ์์์ object ๊ฐ ์ฃผ์ด..