We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edef0b4 commit 1273ae4Copy full SHA for 1273ae4
1-js/04-object-basics/04-object-methods/article.md
@@ -32,11 +32,11 @@ user.sayHi = function() {
32
user.sayHi(); // Hello!
33
```
34
35
-Here we've just used a Function Expression to create the function and assign it to the property `user.sayHi` of the object.
+Here we've just used a Function Expression to create a function and assign it to the property `user.sayHi` of the object.
36
37
-Then we can call it. The user can now speak!
+Then we can call it as `user.sayHi()`. The user can now speak!
38
39
-A function that is the property of an object is called its *method*.
+A function that is a property of an object is called its *method*.
40
41
So, here we've got a method `sayHi` of the object `user`.
42
0 commit comments