From d9344a32ea9efe55dbdb339b7603cdfa320f9a6e Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Sun, 2 Sep 2018 22:19:19 +0300 Subject: [PATCH] Update Factory-functions.md --- glossary/Factory-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glossary/Factory-functions.md b/glossary/Factory-functions.md index 5d217cf86..c2d60e6d2 100644 --- a/glossary/Factory-functions.md +++ b/glossary/Factory-functions.md @@ -1,4 +1,4 @@ ### Factory functions In JavaScript, a factory function is any function, which is not a class or constructor, that returns a new object. -Factory functions don't use the `new` keyword. +Factory functions don't require the use of the `new` keyword.