You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/content/tutorial/04-logic/05-keyed-each-blocks/text.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -14,4 +14,6 @@ To do that, we specify a unique identifier for the `each` block:
14
14
{/each}
15
15
```
16
16
17
-
The `(thing.id)` tells Svelte how to figure out what changed.
17
+
The `(thing.id)` tells Svelte how to figure out what changed.
18
+
19
+
> You can use any object as the key, as Svelte uses a `Map` internally — in other words you could do `(thing)` instead of `(thing.id)`. Using a string or number is generally safer, however, since it means identity persists without referential equality, for example when updating with fresh data from an API server.
0 commit comments