Skip to content

Commit 4e07ce9

Browse files
Update src/content/learn/updating-arrays-in-state.md
Co-authored-by: Alina Listunova <alinkedd@users.noreply.github.com>
1 parent 342d67b commit 4e07ce9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/learn/updating-arrays-in-state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ title: Оновлення масивів у стані
2626

2727
| | уникати (змінює масив) | віддати перевагу (повертає новий масив) |
2828
| --------- | ----------------------------------- | ------------------------------------------------------------------- |
29-
| додавання | `push`, `unshift` | `concat`, `[...arr]` spread синтаксис ([приклад](#adding-to-an-array)) |
29+
| додавання | `push`, `unshift` | `concat`, spread-синтаксис `[...arr]` ([приклад](#adding-to-an-array)) |
3030
| видалення | `pop`, `shift`, `splice` | `filter`, `slice` ([приклад](#removing-from-an-array)) |
3131
| заміна | `splice`, `arr[i] = ...` призначення | `map` ([приклад](#replacing-items-in-an-array)) |
3232
| сортування | `reverse`, `sort` | спочатку скопіюйте масив ([приклад](#making-other-changes-to-an-array)) |

0 commit comments

Comments
 (0)