Skip to content

Commit 757fd1b

Browse files
committed
add links
1 parent 5c7024d commit 757fd1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pages/docs/manual/latest/array-and-list.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ var tenthItem = myArray[10];
4646

4747
</CodeTab>
4848

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`.
49+
The behavior of returning an `option` is new to V11 when you have [Core](api/core) open.
50+
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.
51+
If you would like to not use an `option`, you can use [`Array.getUnsafe`](api/core/array#value-getUnsafe).
5252

5353
#### Update
5454
Items in an array can be updated by assigning a value to an index or using a function:

0 commit comments

Comments
 (0)