super ํค์๋ super() ํค์๋๋ ์์(๋ถ๋ชจ)๊ฐ์ฒด์ ํจ์๋ฅผ ํธ์ถํ ๋ ์ฌ์ฉ๋ฉ๋๋ค ๋จ, constructor(์์ฑ์) ์์์๋ super ํค์๋ ํ๋๋ง ์ฌ์ฉ๋๊ฑฐ๋ this ํค์๋ ์ ์ ๋จผ์ ํธ์ถ๋์ด์ผ ํฉ๋๋ค ๋ถ๋ชจ ํด๋์ค์ ์์ญ์, ์์ํด๋์ค(๋)๋ ํฌํจํ๊ณ ์๋ ๊ฒฝ์ฐ! ์ค๋ณต์ ์ค์ด๋ ค๊ณ ๊ทธ๋, ์ฌ์ฉํ๋ ํค์๋ 'super' super ํํ 2๊ฐ์ง 1.super() = ๋ถ๋ชจ ํด๋์ค์ ์์ฑ์(constructor) 2.super. = ๋ถ๋ชจํด๋์ค์ class Person { constructor(name, first, second){ this.name =name; this.first=first; this.second=second; } sum(){ return this.first+this.second; } ..