Skip to content

Commit ba5d9f0

Browse files
committed
add links to resources on mdn
1 parent 330169d commit ba5d9f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ Other Style Guides
325325
```
326326
327327
<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.
329329
330330
```javascript
331331
const someStack = [];
@@ -355,7 +355,7 @@ Other Style Guides
355355
```
356356
357357
<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).
359359
360360
```javascript
361361
const foo = document.querySelectorAll('.foo');

0 commit comments

Comments
 (0)