๊ฐ์ฒด(Object)
๐ ๊ฐ์ฒด๋ ๋ฌด์์ธ๊ฐ?
๊ฐ์ฒด๋ ์ด๋ฆ๊ณผ ๊ฐ์ผ๋ก ๊ตฌ์ฑ๋ ํ๋กํผํฐ์ ์ ๋ ฌ๋์ง ์์ ์งํฉ์ฒด์ ๋๋ค.
๊ฐ์ฒด๋ฅผ ์์ฑํ ๋๋ ํจ์๋ ํด๋์ค๋ฅผ ์ด์ฉํ ์ ์์ต๋๋ค.
์ฝ๊ฒ ๋งํด ํจ์๋ ํด๋์ค๋ฅผ ํฐ ํ๋ก ์๊ฐํ๊ณ ํ๋ํ๋ ์ฐ์ด๋ด๋ ๊ฒ์ ๊ฐ๊ฐ ๊ฐ์ฒด๋ผ๊ณ ์๊ฐํ๋ฉด ๋ฉ๋๋ค.
์ด ๊ฐ์ฒด๋ ์ธ์คํด์ค๋ผ๊ณ ๋ถ๋ฅด๊ธฐ๋ ํฉ๋๋ค.
new
๋ผ๋ ํค์๋๋ฅผ ํตํด ๊ฐ์ฒด๋ฅผ ์์ฑํฉ๋๋ค.
function A() {}
const a = new A(); // new๋ฅผ ํตํด์ ํจ์ A์ ๊ฐ์ฒด๊ฐ ๋ง๋ค์ด์ ธ ๋ณ์ a์ ํ ๋น๋๋ค.
console.log(a, typeof a);
console.log(A());
๐ ๊ฐ์ฒด์ ์์ฑ(ํ๋กํผํฐ)์ถ๊ฐํ๊ธฐ
ํจ์์์ ํ๋กํผํฐ๋ฅผ ๋ง๋ค์ด ๊ฐ์ฒด์ ํ ๋นํ ์ ์์ต๋๋ค.
ํ๋กํผํฐ๋ฅผ ์ค์ ํ๋ฉด ๊ฐ๊ฐ์ ์ฑ์ง์ ๊ฐ์ง๋ ์์ฑ์ ๋ง๋ค๊ฒ ๋ฉ๋๋ค.
function A(name) {
this.name = name;
}
const a = new A("Mark");
console.log(a);
ํจ์๋ฅผ ์์ฑ์ผ๋ก ๋ฃ๊ธฐ
ํจ์๋ฅผ ํ๋กํผํฐ๋ก ๋ฃ๋ ๊ฒ๋ํ ๊ฐ๋ฅํฉ๋๋ค.
function B() {
this.hello = function () {
console.log("hello");
};
}
new B().hello();
ํจ์B์ ํ๋กํผํฐ hello์ โhelloโ๋ฅผ ์ถ๋ ฅํ๋ ํจ์๋ฅผ ์ค์ ํจ.
๐ ๊ฐ์ฒด ๋ฆฌํฐ๋ด
๊ฐ์ฒด ๋ฆฌํฐ๋ด์ ์ค๊ดํธ ์์ ํ๋กํผํฐ๋ฅผ ์ ์ํ์ฌ ๊ฐ์ฒด๋ฅผ ์์ฑํ๋ ๋ฐฉ์์ ๋๋ค.
ํ๋กํผํฐ๋ ์ผํ(,
)๋ก ๊ตฌ๋ถํฉ๋๋ค.
const b = {
name: "Mark", // name์ด๋ผ๋ ํ๋กํผํฐ์ 'Mark'๋ผ๋ ๊ฐ ํ ๋น
};
console.log(b, typeof b);
๊ฒฐ๊ณผ
{
name: "Mark";
}
object;
ํ๋กํผํฐ์ ํจ์๋ ํ ๋นํ ์ ์์ต๋๋ค.
const c = {
name: "Mark",
hello1() {
console.log("hello1", this.name);
},
hello2: function () {
console.log("hello2", this.name);
},
hello3: () => {
console.log("hello3", this);
},
};
c.hello1();
c.hello2();
c.hello3();
๊ฒฐ๊ณผ
hello1 Mark
hello2 Mark
hello3 {}
๐ฌ ์ต์ ๋๊ธ