Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Як найпростіше зробити неглибоку копію масиву arr?
const copy = arr;
const copy = arr.copy();
const copy = Array.copy(arr);
const copy = [...arr];
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!