Skip to content

Commit

Permalink
2024/09/27 時点の英語版に基づき更新
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Oct 11, 2024
1 parent 837bd26 commit 76daa6c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Object.assign()
slug: Web/JavaScript/Reference/Global_Objects/Object/assign
l10n:
sourceCommit: 88d71e500938fa8ca969fe4fe3c80a5abe23d767
sourceCommit: 8b6cec0ceff01e7a9d6865cf5306788e15cce4b8
---

{{JSRef}}
Expand Down Expand Up @@ -57,7 +57,7 @@ console.log(copy); // { a: 1 }

### ディープクローンについての注意

[ディープクローン](/ja/docs/Glossary/Deep_copy)を行う場合、別に [`structuredClone()`](/ja/docs/Web/API/structuredClone) のような代替手段を使用する必要があります。 `Object.assign()` はプロパティ値のみをコピーするからです。
[ディープクローン](/ja/docs/Glossary/Deep_copy)を行う場合、別に {{DOMxRef("Window.structuredClone", "structuredClone()")}} のような代替手段を使用する必要があります。 `Object.assign()` はプロパティ値のみをコピーするからです。

元の値がオブジェクトへの参照である場合、参照の値のみがコピーされます。

Expand Down

0 comments on commit 76daa6c

Please sign in to comment.