Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fb03c7d

Browse files
committedMay 29, 2017
up
1 parent 58c04e2 commit fb03c7d

File tree

1 file changed

+1
-1
lines changed
  • 1-js/04-object-basics/06-constructor-new

1 file changed

+1
-1
lines changed
 

‎1-js/04-object-basics/06-constructor-new/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ john = {
208208
- Constructor functions or, shortly, constructors, are regular functions, but there's a common agreement to name them with capital letter first.
209209
- Constructor functions should only be called using `new`. Such call implies a creation of empty `this` at the start and returning the populated one at the end.
210210

211-
We can use constructor functions to make multiple similar objects. But the topic is much deeper than described here. So we'll return to it later and cover it more in-depth.
211+
We can use constructor functions to make multiple similar objects.
212212

213213
JavaScript provides constructor functions for many built-in language objects: like `Date` for dates, `Set` for sets and others that we plan to study.
214214

0 commit comments

Comments
 (0)
Please sign in to comment.