From c27364ace40c0a79bc35ffa90bece6472bcdeade Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Sun, 2 Sep 2018 22:21:05 +0300 Subject: [PATCH] Update Strict-mode.md --- glossary/Strict-mode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glossary/Strict-mode.md b/glossary/Strict-mode.md index b61ead637..0eb07763f 100644 --- a/glossary/Strict-mode.md +++ b/glossary/Strict-mode.md @@ -1,4 +1,4 @@ ### Strict mode JavaScript's strict mode is a JavaScript feature that allows developers to use a more restrictive variant of JavaScript and it can be enabled by adding `'use strict';` at the very top of their code. -Strict mode elimiated some silent errors, might improve performance and changes the behavior or `eval` and `arguments` among other things. +Strict mode elimiated some silent errors, might improve performance and changes the behavior of `eval` and `arguments` among other things.