diff --git a/1-js/04-object-basics/06-constructor-new/article.md b/1-js/04-object-basics/06-constructor-new/article.md index 77843b49..22fd6c6f 100644 --- a/1-js/04-object-basics/06-constructor-new/article.md +++ b/1-js/04-object-basics/06-constructor-new/article.md @@ -8,7 +8,7 @@ That can be done using constructor functions and the `"new"` operator. ## Constructor function -Constructor functions technically are regular functions. There are two agreements though: +Constructor functions technically are regular functions. There are two conventions though: 1. They are named with capital letter first. 2. They should be executed only with `"new"` operator.