We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c7024d commit 757fd1bCopy full SHA for 757fd1b
pages/docs/manual/latest/array-and-list.mdx
@@ -46,9 +46,9 @@ var tenthItem = myArray[10];
46
47
</CodeTab>
48
49
-The behavior of returning an `option` is new to V11 and provides a safer way to access array items.
50
-This is especially useful when you're not sure if the index is out of bounds.
51
-If you would like to not use an `option`, you can use `Array.getUnsafe`.
+The behavior of returning an `option` is new to V11 when you have [Core](api/core) open.
+It provides a safer way to access array items, which is especially useful when you're not sure if the index is out of bounds.
+If you would like to not use an `option`, you can use [`Array.getUnsafe`](api/core/array#value-getUnsafe).
52
53
#### Update
54
Items in an array can be updated by assigning a value to an index or using a function:
0 commit comments