๋ฐ์ํ Array๊ฐ์ฒด1 ๊ฐ์ฒด(์ ์ญ,Date,Math,Array) ๊ฐ์ฒด์ ๋ํ ๋ด์ฉ๊ณผ ํ์ค ๊ฐ์ฒด ์ค์ ์์ฃผ ์ฐ์ด๋ ๊ฐ์ฒด๋ค์ ๋ํด ์ค์ต๊ณผ ์์ ์์ฃผ๋ก ๋ด์ฉ์ ํฌ์คํ ํด๋ณด์๋ค. 1. ๊ฐ์ฒด(Object) ๋ชจ๋ ๊ฐ์ฒด๋ค์ property(์์ฑ/๋ฉค๋ฒ๋ณ์)์ method(๊ธฐ๋ฅ)์ผ๋ก ์ด๋ฃจ์ด์ ธ์๋ค. ์์๋ฅผ ๋ค์ด ์ ๋ฆฌํ์๋ฉด ์๋์ ๊ฐ๋ค. //๊ฐ์ฒด์ ์๊น์ var person={//๊ดํธ ๋ด๋ถ๊ฐ ๊ฐ์ฒด์ ํ๋ name:'ํ๊ธธ๋', age:'20', hello:function(){console.log('์ ๋ '+this.name+'์ ๋๋ค');} } //์์ฑ์ ๊ทผ ์ฐ์ฐ์(.)๋ฅผ ํตํด ์์ฑ(๋ฉค๋ฒ)๋ก ์ ๊ทผ์ด ๊ฐ๋ฅํ๋ค. person.hello(); //์ ๋ ํ๊ธธ๋์ ๋๋ค console.log(person.name); //ํ๊ธธ๋ ์๋์ ๊ฐ์ด ์์ฑ์๋ฅผ ๋ง๋ค์ด ๊ฐ์ฒด๋ฅผ ์์ฑํ๋ ๋ฐฉ๋ฒ๋ ์๋ค. //์์ฑ์์ ๋งค๊ฐ๋ณ.. 2022. 2. 15. ์ด์ 1 ๋ค์ ๋ฐ์ํ