Constructor function(์์ฑ์ ํจ์) ๊ฐ์ฒด ์์ฐ ํจ์, ์ฆ ๊ฐ์ฒด๋ฅผ ์ฐ์ด๋ด๋ ํจ์์ด๋ค. ์ด์ ์๋ ํ๋์ ๊ฐ์ฒด๋ง๋ค ํค์ ๊ฐ์ ๋ถ์ฌํด์คฌ๋ค๋ฉด, ์ปจ์คํธ๋ญํฐ์ new ๋ผ๋ ๊ฐ์ฒด์์ฑ ํค์๋๋ฅผ ์ฌ์ฉํ์ฌ ์ปจ์คํธ๋ญํฐ์ ์ ์๋์ด ์๋ ์์ฑ๊ณผ ๋ฉ์๋๋ฅผ ํ๋ฒ์ ๋ฐ์์ฌ ์ ์๊ณ , ๊ฐ๊ฐ์ ๊ฐ์ ๋งค๊ฐ๋ณ์๋ก ๋ฐ์ ๊ฐ ์ํฉ๋ง๋ค ๋ณ๊ฒฝํ์ฌ ์ฌ์ฉํ ์ ์๋ค. // ํจ์์ ๋งค๊ฐ๋ณ์๋ฅผ ๋ง๋ค์ด์ค๋ค function Person(name,first,second,third){ this.name =name; this.first=first; this.second=second; this.third=third; this.sum=function(){ return this.first+this.second+this.third; } } // ์์ฑ์ํจ์..