Class๋ ๋ญ๋ค? constructor ๋ฉ์๋๋ฅผ ์ฌ์ฉํด ๋ณด๋ค ์ฝ๊ฒ ๊ฐ์ฒด๋ฅผ ๋ง๋๋ ๊ณต์ฅ! prototype ๊ธฐ๋ฐ์ ๊ฐ์ฒด๋ฅผ ๋ง๋๋ ๊ณต์ฅ์ด ์๊ณ , (๋ณด๊ธฐ์ฌ์) class ๊ธฐ๋ฐ์ ๊ฐ์ฒด๋ฅผ ๋ง๋๋ ๊ณต์ฅ์ด ์๋ค. // ์์ฑ๋ ๊ฐ์ฒด๋ฅผ ์ด๋ป๊ฒ ์ด๊ธฐํ? // ๋จผ์ ์คํ๋๋๋ก ๋ง๋ค์ด์ง constructor ํจ์๋ฅผ class ๋ด์์ ๊ตฌํ class Person { constructor(name, first, second){ this.name =name; this.first=first; this.second=second; } sum=()=>{ return 'class : '+(this.first+this.second); } } let kim = new Person('kim',10,20); kim.sum = function()..