We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f87bdd commit 9b5187eCopy full SHA for 9b5187e
1 file changed
fundamentals/oop_classes.md
@@ -75,6 +75,8 @@ When a function is called and preceded by the `new` keyword, something special h
75
76
We can now add properties to the new object through the `this` variable, as shown below.
77
78
+When the constructor function finishes, it returns the newly constructed object as its return value.
79
+
80
```js
81
function Month(name, days) {
82
this.name = name;
0 commit comments