What's the difference between:
pause: function () {
this.state.gamePaused = true;
},
and
function pause() {
this.state.gamePaused = true;
}
|
What's the difference between:
and
|
|||
|
|
The first example is probably part of an object, which means that pause is a function of an Javascript object and the second one pause as a stand alone function. I'd expect to see the first example in something like:
And thus it is used like:
On the other hand, the second example would be used like:
|
|||
|
|
|
Both are functions (aka methods), it's just that they are declared in two different ways for use in two different settings. In JS you can define objects like so:
In this example, the last property of the object is a function. This is an anonymous function, meaning it is not, itself, named. That's why there's no name between the 'function' and the '()'. So you reference it using the variable you assigned it to, like so:
You can also pass it around and execute it by the name of whatever variable you assign it to:
You can also declare functions just about anywhere, so in the global scope you can say:
This defines a named function, which can be executed from anywhere by name:
Incidentally, this, too, can be passed around:
|
|||
|
|
|
ECMAScript defines a method as a function that is the value of a property. So when you put a function on an object, we refer to it as that object's method. So to answer the question, the first one is a method.
|
|||
|
|
Note that both functions are really methods, although the latter is rarely referred to as one. |
|||
|
|