missing backticks

This commit is contained in:
DouglasMV 2019-06-11 16:36:39 -03:00 committed by GitHub
parent ace757d644
commit 1856fe3868
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -453,7 +453,7 @@ We can use an array as a deque with the following operations:
- `push(...items)` adds `items` to the end.
- `pop()` removes the element from the end and returns it.
- `shift()` removes the element from the beginning and returns it.
- `unshift(...items)` adds items to the beginning.
- `unshift(...items)` adds `items` to the beginning.
To loop over the elements of the array:
- `for (let i=0; i<arr.length; i++)` -- works fastest, old-browser-compatible.