Skip to content

Commit 39e3b99

Browse files
authored
Update Stacks.md
1 parent 4a50a20 commit 39e3b99

File tree

1 file changed

+1
-1
lines changed
  • Basic Data Structures/Implementation of Stack in JavaScript

1 file changed

+1
-1
lines changed

Basic Data Structures/Implementation of Stack in JavaScript/Stacks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,4 @@ class Stack {
126126

127127
```
128128

129-
> **As the number of items grows, push/pop becomes increasingly more performant than unshift/shift because every item needs to be reindexed in the latter but not the former.
129+
> **As the number of items grows, push/pop becomes increasingly more performant than unshift/shift because every item needs to be reindexed in the latter but not the former**.

0 commit comments

Comments
 (0)