diff --git a/README.md b/README.md index 7bae5dda..87a4e02f 100644 --- a/README.md +++ b/README.md @@ -325,7 +325,7 @@ Other Style Guides ``` - - [4.2](#arrays--push) Use Array#push instead of direct assignment to add items to an array. + - [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. ```javascript const someStack = []; @@ -355,7 +355,7 @@ Other Style Guides ``` - - [4.4](#arrays--from) To convert an array-like object to an array, use Array#from. + - [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). ```javascript const foo = document.querySelectorAll('.foo');