admin管理员组文章数量:1344645
I'm sure this thing is duplicated somewhere but I don't know what to search.
So, I've been looking through a Node.JS Application and found this code and wondered what it does. I have tried searching but I don't know what to search so I was hoping someone would it explain it to me.
init = refresh = function () {
// code here..
};
I understand 1 equals, but why 2? does it make some sort of alias so that function can be run with both init
and refresh
?
I'm sure this thing is duplicated somewhere but I don't know what to search.
So, I've been looking through a Node.JS Application and found this code and wondered what it does. I have tried searching but I don't know what to search so I was hoping someone would it explain it to me.
init = refresh = function () {
// code here..
};
I understand 1 equals, but why 2? does it make some sort of alias so that function can be run with both init
and refresh
?
-
Variable assignment works like that, yes. (
a = b
setsa
tob
and evaluates tob
; it resolves right to left.) – Ry- ♦ Commented Sep 21, 2013 at 21:41 -
Basically what it's doing is assigning
function(){...}
to bothinit
andrefresh
. – Derek 朕會功夫 Commented Sep 21, 2013 at 21:57
3 Answers
Reset to default 5=
resolves the right hand side and then assigns the result to the left hand side.
The result of doing this is the same as the result assigned.
So that assigns the function to both init
and refresh
Quentin did a very good job telling you what it is doing. I just wanted to chime in to give an example where you might use this:
Say for instance you have an object:
var obj = {
init: function() {
var x = this.x = [1,2,3];
}
};
What this allows you to do is reference your x variable two different ways (either through x or this.x).
Now why would you do this? Well two major reasons.
- It is faster to access x rather than this.x (but you still need to access it elsewhere)
- It produces easier to read code when having to read/write to x lots of times in one function.
This is just another reason why you would use it.
But in most cases it is just aliases, such as: forEach -> each
Here's an explanation using operator associativity and precedence.
So, looking at an operator precedence description from Mozilla, when an expression includes multiple operators of the same precedence, as in
a OP b OP c
, then you check whether that level of precedence uses right-to-left or left-to-right associativity.
a = b = c
The assignment operator in JavaScript is the only operator on its level of precedence.
It has right-to-left associativity
So in a = b = c
, b = c
is evaluated first, assigning the value of c
to b
.
Then the expression bees a = b
.
本文标签: nodejsJavascript varvarfunctionStack Overflow
版权声明:本文标题:node.js - Javascript: var = var = function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743788793a2539177.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论