admin管理员组文章数量:1344622
I have trouble understanding this paragraph in the page :
This operator allows inserting expressions that produce side effects into places where an expression that evaluates to undefined is desired.
What exactly are expressions that produce side effects ?
I have trouble understanding this paragraph in the page https://developer.mozilla/en/JavaScript/Reference/Operators/Special/void:
This operator allows inserting expressions that produce side effects into places where an expression that evaluates to undefined is desired.
What exactly are expressions that produce side effects ?
Share Improve this question asked Jul 1, 2011 at 1:25 Li JuanLi Juan 1,4572 gold badges10 silver badges12 bronze badges 05 Answers
Reset to default 6A function does two things typically: Perform something and return a value. Some functions only do one of those things, some do both. For instance the function:
function square(x) {
return x * x;
}
Is side-effect free since all it does is return a value and its invocation can always replaced by its return value. On the other hand, something like alert()
is only called for its side-effects (alerting a user) and never for its return value.
So what void
operator does is it makes JavaScript ignore the return value and state that all you're interested is the function's side-effects.
A simple example is a function call. If you need an "undefined" value, but you also want to call a function that (say) does some DOM manipulation, you can "cast" the result to void
and have an undefined result.
I definitely don't think that this would be in the "good parts" of the language, though it does get around the bizarre fact that "undefined" is not really a reserved word. The expression void 0
is definitely going to be really undefined.
The expression (i+=1)
evaluates to i+1
but has a side effect of incrementing i
by 1.
The purpose of void
isn't to mask side effects but specifically for when you want side effects, but don't want the result of the expression.
'Side Effects' is the result of the function that void takes as an argument. In this scenario the function F1 returns 'false', but the wrapping it in 'void' essentially 'swallows' that result or 'side effect':
var F1 = function() { return false; }
void(F1());
Please excuse the gratuitous use of quotes... haha.
One example is this:
<a href="javascript:void(**do stuff here**)">link</a>
The void forces it to return nothing. Without the void potentially some return value will cause the link to take the user away from the page.
本文标签: javascriptWhat exactly are expressions that produce *side effects*Stack Overflow
版权声明:本文标题:javascript - What exactly are expressions that produce *side effects*? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743803932a2541827.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论