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: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -325,7 +325,7 @@ Other Style Guides
325
325
```
326
326
327
327
<a name="arrays--push"></a><a name="4.2"></a>
328
-
- [4.2](#arrays--push) Use Array#push instead of direct assignment to add items to an array.
328
+
- [4.2](#arrays--push) Use [Array#push](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/push) instead of direct assignment to add items to an array.
329
329
330
330
```javascript
331
331
const someStack = [];
@@ -355,7 +355,7 @@ Other Style Guides
355
355
```
356
356
357
357
<a name="arrays--from"></a><a name="4.4"></a>
358
-
- [4.4](#arrays--from) To convert an array-like object to an array, use Array#from.
358
+
- [4.4](#arrays--from) To convert an array-like object to an array, use [Array#from](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/from).
0 commit comments