admin管理员组文章数量:1352168
so a simple example would be
function a() {
alert("something");
}
anything.onclick = a; // this is without parentheses
anything.onclick = a(); // this is with parentheses
What is the difference between the two?
And one thing more: if I define the same function but this time return false, will it work?
function a(){
alert("something");
return false;
}
so a simple example would be
function a() {
alert("something");
}
anything.onclick = a; // this is without parentheses
anything.onclick = a(); // this is with parentheses
What is the difference between the two?
And one thing more: if I define the same function but this time return false, will it work?
function a(){
alert("something");
return false;
}
Share
Improve this question
edited Feb 5, 2014 at 17:21
Kara
6,22616 gold badges53 silver badges58 bronze badges
asked Jan 28, 2013 at 18:05
user2019110user2019110
553 bronze badges
3
- 9 The difference is that without parentheses it's not a call at all. – Pointy Commented Jan 28, 2013 at 18:06
- What happens when you run it? – epascarello Commented Jan 28, 2013 at 18:08
- In JavaScript, if you don't return anything in the function (and it's not a Constructor function) it will always return undefined. – contactmatt Commented Jan 28, 2013 at 19:12
4 Answers
Reset to default 8The difference is that a()
calls the function while a
is the function.
console.log( a() ); // false
console.log( a ); // function() {...}
To make it clear what technically happens when you use the second part of your example, let's redefine a
like this:
a = function() {
return 100;
};
and set the event handler:
anything.onclick = a();
f()
not only calls the function f
but returns its return value. So when setting a variable or object property to a function call, the return value of the function call will be assigned. So the above statement is effectlively equivalent to:
anything.onclick = 100;
which doesn't make sense and might cause an error. If a function doesn't have a return value, its return value is implicitly undefined
.
However, if you had set a variable equal to a
without calling it, it would be the same as setting a regular function expression to that variable:
var a = function() { ... },
b = a; // b = function() { ... }
b
would perform the same operation as a
would.
So in your example go with the first one because it makes sense! The only case in which you would assign the return value of the function call to an event handler is if the function returns another function. For instance:
var x = function(xyz) {
return function() {
console.log(xyz);
};
};
anything.onclick = x("Hello World"); // = function() {
// console.log("Hello World");
// }
Assigns reference:
anything.onclick = a; //assigns a reference
With your function it is:
anything.onclick = function() {
alert("something");
}
Executes method and assigns the returned result
anything.onclick = a(); //calls the method and assigns whatever is returned.
With your function it is:
anything.onclick = false;
The parenthesis at the end of the function is the permission for javascript engine to execute the function. If you don't supply it, it won't be executed at all.
If you do x=a()
you are invoking the function but if you do x=a
you are passing a pointer to a function
long story short:
Let's say we have
function f(){}
or f = function(){}
If you now write
someFunction(f());
it will call f() and whatever f() returns
will be passed as argument to someFunction()
.
If you write
someFunction(f);
on the other hand (when defined like the latter), f
will be passed to someFunction()
as (a variable holding) the function
.
This could be used e.g. if the function is supposed to be used later on but maybe can't be called some other ('normal') way.
( Of course, depending on language, "function" could obviously be a "method" and the language could not even have function-variables or however you call it! )
( off topic: note that this answer says the same as the other answers because that is THE true answer but I did not want to edit the other answers because each may be found differently helpful by different people )
版权声明:本文标题:what is the difference between calling function in JavaScript with or without parentheses () - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743893192a2557306.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论