From 76bf5ec8a9e9631cead006f6d3b34b5b21161136 Mon Sep 17 00:00:00 2001 From: Aniket Kudale Date: Mon, 9 Mar 2020 23:22:36 +0530 Subject: [PATCH] Corrected Grammar --- 1-js/05-data-types/04-array/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/04-array/article.md b/1-js/05-data-types/04-array/article.md index 7dc54bd4..bb2fd8eb 100644 --- a/1-js/05-data-types/04-array/article.md +++ b/1-js/05-data-types/04-array/article.md @@ -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:**