Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[신규 번역] 'Part 1. 6.2 나머지 매개변수와 전개 문법' 중간 미번역 #1169 #1170

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions 1-js/06-advanced-functions/02-rest-parameters-spread/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,49 +225,49 @@ alert( Array.from(str) ); // H,e,l,l,o
이런 이유때문에 무언가를 배열로 바꿀 때는 전개 문법보다 `Array.from`이 보편적으로 사용됩니다.


## Get a new copy of an array/object
## 배열 / 객체의 사본 만들기

Remember when we talked about `Object.assign()` [in the past](info:object-copy#cloning-and-merging-object-assign)?
객체를 복사하기 위해 `Object.assign()`을 [공부했던 것](info:object-copy#cloning-and-merging-object-assign)을 기억하시나요?

It is possible to do the same thing with the spread syntax.
전개 연산자를 사용해서 동일한 작업을 할 수 있습니다.

```js run
let arr = [1, 2, 3];
let arrCopy = [...arr]; // spread the array into a list of parameters
// then put the result into a new array
let arrCopy = [...arr]; // 기존 배열을 매개변수로 전달하여
// 그 결과를 새 배열에 넣습니다.

// do the arrays have the same contents?
// 두 배열의 내용이 동일합니까?
alert(JSON.stringify(arr) === JSON.stringify(arrCopy)); // true

// are the arrays equal?
alert(arr === arrCopy); // false (not same reference)
// 두 배열이 동일합니까?
alert(arr === arrCopy); // false (참조가 다름)

// modifying our initial array does not modify the copy:
// 원본 배열을 수정해도 사본 배열은 변하지 않습니다.
arr.push(4);
alert(arr); // 1, 2, 3, 4
alert(arrCopy); // 1, 2, 3
```

Note that it is possible to do the same thing to make a copy of an object:
객체의 사본을 만드는 것도 동일합니다.

```js run
let obj = { a: 1, b: 2, c: 3 };
let objCopy = { ...obj }; // spread the object into a list of parameters
// then return the result in a new object
let objCopy = { ...obj }; // 기존 객체를 매개변수로 전달하여
// 그 결과를 새 객체에 넣습니다.

// do the objects have the same contents?
// 두 객체의 내용이 동일합니까?
alert(JSON.stringify(obj) === JSON.stringify(objCopy)); // true

// are the objects equal?
alert(obj === objCopy); // false (not same reference)
// 두 객체가 동일합니까?
alert(obj === objCopy); // false (참조가 다름)

// modifying our initial object does not modify the copy:
// 원본 객체를 수정해도 사본 객체는 변하지 않습니다.
obj.d = 4;
alert(JSON.stringify(obj)); // {"a":1,"b":2,"c":3,"d":4}
alert(JSON.stringify(objCopy)); // {"a":1,"b":2,"c":3}
```

This way of copying an object is much shorter than `let objCopy = Object.assign({}, obj);` or for an array `let arrCopy = Object.assign([], arr);` so we prefer to use it whenever we can.
객체에 `let objCopy = Object.assign({}, obj);`를, 배열에 `let arrCopy = Object.assign([], arr)`을 사용하는 것보다 이 방법으로 복사하는 것이 코드가 짧기에 가능한 한 이 방법을 사용하는 것이 좋습니다.


## 요약
Expand Down