<header>
<h2 class="title">Приклад використання методу copyWithin()</h2>
<p class="description">Цей приклад демонструє використання методу copyWithin() для копіювання елементів масиву до інших позицій.</p>
</header>
<main>
<pre>
// Оригінальний масив
const array1 = ['a', 'b', 'c', 'd', 'e'];
</pre>
<div id="output1"></div>
<div id="output2"></div>
</main>
body {
font-size: 16px;
line-height: 1.5;
font-family: monospace;
}
pre {
color: #ff0000;
}
header {
background-color: #f1f1f1;
margin-bottom: 25px;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
header h2.title {
padding-bottom: 15px;
border-bottom: 1px solid #999;
}
header p.description {
font-style: italic;
color: #222;
}
const array1 = ['a', 'b', 'c', 'd', 'e'];
document.getElementById("output1").innerText = "Результат 1: " + array1.copyWithin(0, 3, 4);
// Очікуваний результат: Масив ["d", "b", "c", "d", "e"]
document.getElementById("output2").innerText = "Результат 2: " + array1.copyWithin(1, 3);
// Очікуваний результат: Масив ["d", "d", "e", "d", "e"]
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.