We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e07ce9 commit 03566bbCopy full SHA for 03566bb
src/content/learn/updating-arrays-in-state.md
@@ -28,7 +28,7 @@ title: Оновлення масивів у стані
28
| --------- | ----------------------------------- | ------------------------------------------------------------------- |
29
| додавання | `push`, `unshift` | `concat`, spread-синтаксис `[...arr]` ([приклад](#adding-to-an-array)) |
30
| видалення | `pop`, `shift`, `splice` | `filter`, `slice` ([приклад](#removing-from-an-array)) |
31
-| заміна | `splice`, `arr[i] = ...` призначення | `map` ([приклад](#replacing-items-in-an-array)) |
+| заміна | `splice`, `arr[i] = ...` присвоєння | `map` ([приклад](#replacing-items-in-an-array)) |
32
| сортування | `reverse`, `sort` | спочатку скопіюйте масив ([приклад](#making-other-changes-to-an-array)) |
33
34
Крім того, ви можете [скористатися Immer](#write-concise-update-logic-with-immer), що дозволить використовувати методи з обох стовпців.
0 commit comments