๋์คํธ๋ญ์ฒ๋ง ํ ๋น(๊ตฌ์กฐ ๋ถํด ํ ๋น)์ ๊ตฌ์กฐํ๋ ๋ฐฐ์ด๊ณผ ๊ฐ์ ์ดํฐ๋ฌ๋ธ ๋๋ ๊ฐ์ฒด๋ฅผ desrtucting(๋น๊ตฌ์กฐํ, ๊ตฌ์กฐ ํ๊ดด)ํ์ฌ 1๊ฐ ์ด์์ ๋ณ์์ ๊ฐ๋ณ์ ์ผ๋ก ํ ๋นํ๋๊ฒ์ ๋งํ๋ค.
๋ฐฐ์ด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ๋ฐฐ์ด์ ๊ฐ ์์๋ฅผ ๋ฐฐ์ด๋ก๋ถํฐ ์ถ์ถํ์ฌ 1๊ฐ ์ด์์ ๋ณ์์ ํ ๋นํ๋ค. ์ด๋ ๋ฐฐ์ด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ๋์(ํ ๋น๋ฌธ์ ์ฐ๋ณ)์ ์ดํฐ๋ฌ๋ธ์ด์ด์ผ ํ๋ฉฐ, ํ ๋น ๊ธฐ์ค์ ๋ฐฐ์ด์ ์ธ๋ฑ์ค๋ค.
const arr = [1, 2, 3];
// ES6 ๋ฐฐ์ด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น
// ๋ณ์ one, two, three๋ฅผ ์ ์ธํ๊ณ ๋ฐฐ์ด arr์ ๋์คํธ๋ญ์ฒ๋งํ์ฌ ํ ๋นํ๋ค.
// ์ด๋ ํ ๋น ๊ธฐ์ค์ ๋ฐฐ์ด์ ์ธ๋ฑ์ค๋ค.
const [one, two, three] = arr;
console.log(one, two, three); // 1 2 3
๋ฐฐ์ด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ์ํด์๋ ํ ๋น ์ฐ์ฐ์ ์ผ์ชฝ์ ๊ฐ์ ํ ๋น๋ฐ์ ๋ณ์๋ฅผ ๋ฐฐ์ด ๋ฆฌํฐ๋ด ํํ๋ก ์ ์ธํ๋ค.
const [x, y] = [1, 2];
๋ฐฐ์ด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ๊ธฐ์ค์ ๋ฐฐ์ด์ ์ธ๋ฑ์ค๋ค. ์ฆ, ์์๋๋ก ํ ๋น๋๋ค. ์ด๋ ๋ณ์์ ๊ฐ์์ ์ดํฐ๋ฌ๋ธ์ ์์ ๊ฐ์๊ฐ ๋ฐ๋์ ์ผ์นํ ํ์๋ ์์ผ๋ฉฐ, ๋ณ์์ ๊ธฐ๋ณธ๊ฐ์ ์ค์ ํ ์ ์๋ค.
const [a, b] = [1, 2];
console.log(a, b); // 1 2
const [c, d] = [1];
console.log(c, d); // 1 undefined
const [e, f] = [1, 2, 3];
console.log(e, f); // 1 2
const [g, , h] = [1, 2, 3];
console.log(g, h); // 1 3
// ๊ธฐ๋ณธ๊ฐ
const [a, b, c = 3] = [1, 2];
console.log(a, b, c); // 1 2 3
// ๊ธฐ๋ณธ๊ฐ๋ณด๋ค ํ ๋น๋ ๊ฐ์ด ์ฐ์ ํ๋ค.
const [e, f = 10, g = 3] = [1, 2];
console.log(e, f, g); // 1 2 3
๋ฐฐ์ด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ๋ฐฐ์ด๊ณผ ๊ฐ์ ์ดํฐ๋ฌ๋ธ์์ ํ์ํ ์์๋ง ์ถ์ถํ์ฌ ๋ณ์์ ํ ๋นํ๊ณ ์ถ์ ๋ ์ ์ฉํ๋ค. ๋ค์ ์์ ๋ URL์ ํ์ฑํ์ฌ protocol, host, path ํ๋กํผํฐ๋ฅผ ๊ฐ๋ ๊ฐ์ฒด๋ฅผ ์์ฑํด ๋ฐํํ๋ค.
// url์ ํ์ฑํ์ฌ protocol, host, path ํ๋กํผํฐ๋ฅผ ๊ฐ๋ ๊ฐ์ฒด๋ฅผ ์์ฑํด ๋ฐํํ๋ค.
function parseURL(url = '') {
// '://' ์์ ๋ฌธ์์ด(protocol)๊ณผ '/' ์ด์ ์ '/'์ผ๋ก ์์ํ์ง ์๋ ๋ฌธ์์ด(host)๊ณผ '/' ์ดํ์ ๋ฌธ์์ด(path)์ ๊ฒ์ํ๋ค.
const parsedURL = url.match(/^(\w+):\/\/([^/]+)\/(.*)$/);
console.log(parsedURL);
/*
[
'https://developer.mozilla.org/ko/docs/Web/JavaScript',
'https',
'developer.mozilla.org',
'ko/docs/Web/JavaScript',
index: 0,
input: 'https://developer.mozilla.org/ko/docs/Web/JavaScript',
groups: undefined
]
*/
if (!parsedURL) return {};
// ๋ฐฐ์ด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ์ฌ์ฉํ์ฌ ์ดํฐ๋ฌ๋ธ์์ ํ์ํ ์์๋ง ์ถ์ถํ๋ค.
const [, protocol, host, path] = parsedURL;
return { protocol, host, path };
}
const parsedURL = parseURL('https://developer.mozilla.org/ko/docs/Web/JavaScript');
console.log(parsedURL);
/*
{
protocol: 'https',
host: 'developer.mozilla.org',
path: 'ko/docs/Web/JavaScript'
}
*/
๋ฐฐ์ด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ์ํ ๋ณ์์ Rest ํ๋ผ๋ฏธํฐ์ ์ ์ฌํ๊ฒ Rest ์์ โฆ ๋ฅผ ์ฌ์ฉํ ์ ์๋ค. Rest ์์๋ Rest ํ๋ผ๋ฏธํฐ์ ๋ง์ฐฌ๊ฐ์ง๋ก ๋ฐ๋์ ๋ง์ง๋ง์ ์์นํด์ผ ํ๋ค.
// Rest ์์
const [x, ...y] = [1, 2, 3];
console.log(x, y); // 1 [ 2, 3 ]
๊ฐ์ฒด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ๊ฐ์ฒด์ ๊ฐ ํ๋กํผํฐ๋ฅผ ๊ฐ์ฒด๋ก๋ถํฐ ์ถ์ถํ์ฌ 1๊ฐ ์ด์์ ๋ณ์์ ํ ๋นํ๋ค. ์ด๋ ๊ฐ์ฒด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ๋์(ํ ๋น๋ฌธ์ ์ฐ๋ณ)์ ๊ฐ์ฒด์ด์ด์ผ ํ๋ฉฐ, ํ ๋น ๊ธฐ์ค์ ๊ฐ์ฒด์ ํ๋กํผํฐ ํค๋ค. ์ฆ, ์์๋ ์๋ฏธ๊ฐ ์์ผ๋ฉฐ ์ ์ธ๋ ๋ณ์ ์ด๋ฆ๊ณผ ํ๋กํผํฐ ํค๊ฐ ์ผ์นํ๋ฉด ํ ๋น๋๋ค.
const user = { firstName: 'Ungmo', lastName: 'Lee' };
// ES6 ๊ฐ์ฒด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น
// ๋ณ์ lastName, firstName์ ์ ์ธํ๊ณ user ๊ฐ์ฒด๋ฅผ ๋์คํธ๋ญ์ฒ๋งํ์ฌ ํ ๋นํ๋ค.
// ์ด๋ ํ๋กํผํฐ ํค๋ฅผ ๊ธฐ์ค์ผ๋ก ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ด ์ด๋ฃจ์ด์ง๋ค. ์์๋ ์๋ฏธ๊ฐ ์๋ค.
const { lastName, firstName } = user;
console.log(firstName, lastName); // Ungmo Lee
๊ฐ์ฒด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ์ํด์๋ ํ ๋น ์ฐ์ฐ์ ์ผ์ชฝ์ ํ๋กํผํฐ ๊ฐ์ ํ ๋น๋ฐ์ ๋ณ์๋ฅผ ๊ฐ์ฒด ๋ฆฌํฐ๋ด ํํ๋ก ์ ์ธํ๋ค.
const { lastName, firstName } = { firstName: 'Ungmo', lastName: 'Lee' };
๊ฐ์ฒด์ ํ๋กํผํฐํค์ ๋ค๋ฅธ ๋ณ์์ด๋ฆ์ผ๋ก ํ๋กํผํฐ ๊ฐ์ ํ ๋น๋ฐ์ผ๋ ค๋ฉด ๋ค์๊ณผ ๊ฐ์ด ๋ณ์๋ฅผ ์ ์ธํ๋ฉฐ, ๋ณ์์ ๊ธฐ๋ณธ๊ฐ์ ์ค์ ํ ์ ์๋ค.
const user = { firstName: 'Ungmo', lastName: 'Lee' };
// ํ๋กํผํฐ ํค๋ฅผ ๊ธฐ์ค์ผ๋ก ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ด ์ด๋ฃจ์ด์ง๋ค.
// ํ๋กํผํฐ ํค๊ฐ lastName์ธ ํ๋กํผํฐ ๊ฐ์ ln์ ํ ๋นํ๊ณ ,
// ํ๋กํผํฐ ํค๊ฐ firstName์ธ ํ๋กํผํฐ ๊ฐ์ fn์ ํ ๋นํ๋ค.
const { lastName: ln, firstName: fn } = user;
console.log(fn, ln); // Ungmo Lee
const { firstName = 'Ungmo', lastName } = { lastName: 'Lee' };
console.log(firstName, lastName); // Ungmo Lee
const { firstName: fn = 'Ungmo', lastName: ln } = { lastName: 'Lee' };
console.log(fn, ln); // Ungmo Lee
๊ฐ์ฒด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ๊ฐ์ฒด์์ ํ๋กํผํฐ ํค๋ก ํ์ํ ํ๋กํผํฐ ๊ฐ๋ง ์ถ์ถํ์ฌ ๋ณ์์ ํ ๋นํ๊ณ ์ถ์ ๋ ์ ์ฉํ๋ค.
const str = 'Hello';
// String ๋ํผ ๊ฐ์ฒด๋ก๋ถํฐ length ํ๋กํผํฐ๋ง ์ถ์ถํ๋ค.
const { length } = str;
console.log(length); // 5
const todo = { id: 1, content: 'HTML', completed: true };
// todo ๊ฐ์ฒด๋ก๋ถํฐ id ํ๋กํผํฐ๋ง ์ถ์ถํ๋ค.
const { id } = todo;
console.log(id); // 1
๊ฐ์ฒด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ๊ฐ์ฒด๋ฅผ ์ธ์๋ก ์ ๋ฌ๋ฐ๋ ํจ์์ ๋งค๊ฐ๋ณ์์๋ ์ฌ์ฉํ ์ ์๋ค.
function printTodo({ content, completed }) {
console.log(`ํ ์ผ ${content}์ ${completed ? '์๋ฃ' : '๋น์๋ฃ'} ์ํ์
๋๋ค.`);
}
printTodo({ id: 1, content: 'HTML', completed: true });
// ํ ์ผ HTML์ ์๋ฃ ์ํ์
๋๋ค.
๋ฐฐ์ด์ ์์๊ฐ ๊ฐ์ฒด์ธ ๊ฒฝ์ฐ ๋ฐฐ์ด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น๊ณผ ๊ฐ์ฒด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ํผ์ฉํ ์ ์๋ค.
const todos = [
{ id: 1, content: 'HTML', completed: true },
{ id: 2, content: 'CSS', completed: false },
{ id: 3, content: 'JS', completed: false }
];
// todos ๋ฐฐ์ด์ ๋ ๋ฒ์งธ ์์์ธ ๊ฐ์ฒด๋ก๋ถํฐ id ํ๋กํผํฐ๋ง ์ถ์ถํ๋ค.
const [, { id }] = todos;
console.log(id); // 2
์ค์ฒฉ ๊ฐ์ฒด์ ๊ฒฝ์ฐ๋ ๋ค์๊ณผ ๊ฐ์ด ์ฌ์ฉํ๋ค.
const user = {
name: 'Lee',
address: {
zipCode: '03068',
city: 'Seoul'
}
};
// address ํ๋กํผํฐ ํค๋ก ๊ฐ์ฒด๋ฅผ ์ถ์ถํ๊ณ ์ด ๊ฐ์ฒด์ city ํ๋กํผํฐ ํค๋ก ๊ฐ์ ์ถ์ถํ๋ค.
const { address: { city } } = user;
console.log(city); // 'Seoul'
๊ฐ์ฒด ๋์คํธ๋ญ์ฒ๋ง ํ ๋น์ ์ํ ๋ณ์์ Rest ํ๋ผ๋ฏธํฐ์ ์ ์ฌํ๊ฒ Rest ํ๋กํผํฐ โฆ ์ ์ฌ์ฉํ ์ ์๋ค. Rest ํ๋กํผํฐ๋ Rest ํ๋ผ๋ฏธํฐ์ Rest ์์์ ๋ง์ฐฌ๊ฐ์ง๋ก ๋ฐ๋์ ๋ง์ง๋ง์ ์์นํด์ผ ํ๋ค.
// Rest ํ๋กํผํฐ
const { x, ...rest } = { x: 1, y: 2, z: 3 };
console.log(x, rest); // 1 { y: 2, z: 3 }