Corrected Grammar

This commit is contained in:
Aniket Kudale 2020-03-09 23:22:36 +05:30 committed by GitHub
parent 79356bbd4a
commit 76bf5ec8a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -123,7 +123,7 @@ For stacks, the latest pushed item is received first, that's also called LIFO (L
Arrays in JavaScript can work both as a queue and as a stack. They allow you to add/remove elements both to/from the beginning or the end.
In computer science the data structure that allows it is called [deque](https://en.wikipedia.org/wiki/Double-ended_queue).
In computer science the data structure that allows this, is called [deque](https://en.wikipedia.org/wiki/Double-ended_queue).
**Methods that work with the end of the array:**