2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

シャローコピーに使えるメソッド

Last updated at Posted at 2018-07-19

配列をコピーする方法に

・ディープコピー
・シャローコピー

の2つある。
今回はシャローコピーについて

シャローコピーというのは、コピー元のオブジェクトとコピー先のオブジェクトがメモリ上の同じデータ(インスタンス変数)を参照しています。

#配列をコピーする方法

  • sliceメソッド
  • concatメソッド
  • Array.fromメソッド
javascript
// 元の配列も更新されてしまう例
const manga = ['スラムダンク', 'ドラゴンボール', 'ジョジョ'];
const copy = manga;
copy[0] = "ワンピース";
console.log(manga); //["ワンピース", "ドラゴンボール", "ジョジョ"]
console.log(copy); //["ワンピース", "ドラゴンボール", "ジョジョ"]

sliceメソッドを使った例

javascript
// 
const manga = ['スラムダンク', 'ドラゴンボール', 'ジョジョ'];
const cp = manga.slice();
cp[0] = "ワンピース";
console.log(manga); // ["スラムダンク", "ドラゴンボール", "ジョジョ"]
console.log(cp); // ["ワンピース", "ドラゴンボール", "ジョジョ"]

concatメソッド、Array.fromについては後ほど追記します。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?