Skip to content

Commit 1856fe3

Browse files
authored
missing backticks
1 parent ace757d commit 1856fe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/05-data-types/04-array/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ We can use an array as a deque with the following operations:
453453
- `push(...items)` adds `items` to the end.
454454
- `pop()` removes the element from the end and returns it.
455455
- `shift()` removes the element from the beginning and returns it.
456-
- `unshift(...items)` adds items to the beginning.
456+
- `unshift(...items)` adds `items` to the beginning.
457457

458458
To loop over the elements of the array:
459459
- `for (let i=0; i<arr.length; i++)` -- works fastest, old-browser-compatible.

0 commit comments

Comments
 (0)