admin管理员组文章数量:1339774
I am pushing elements to an array based on a condition as explained here .html
const arr = [
...(cond ? ['a'] : []),
'b',
];
Now, this works fine, but when I try
const arr = [
...(cond && ['a']),
'b',
];
instead, it stops working.
I would like to know why it's not working anymore, and if there is a way to conditionally push using spread operator and && instead of ?.
Thank you
I am pushing elements to an array based on a condition as explained here http://2ality./2017/04/conditional-literal-entries.html
const arr = [
...(cond ? ['a'] : []),
'b',
];
Now, this works fine, but when I try
const arr = [
...(cond && ['a']),
'b',
];
instead, it stops working.
I would like to know why it's not working anymore, and if there is a way to conditionally push using spread operator and && instead of ?.
Thank you
Share Improve this question asked Feb 14, 2018 at 9:02 user3808307user3808307 1,47312 gold badges63 silver badges114 bronze badges 6-
1
please add the value of
cond
. – Nina Scholz Commented Feb 14, 2018 at 9:03 -
In the second example, if
cond
evaluates to false, the expression evaluates tofalse
and you end up with...false
instead of...[]
therefore throwing an error. – Miguel Calderón Commented Feb 14, 2018 at 9:10 - @NinaScholz cond is a condition, and as such, may be true or false – user3808307 Commented Feb 14, 2018 at 9:13
- @Miguel in the case I am using to test particulary it evaluates to true, and it does not add "a" to the array. Either way, do you know to fix this? – user3808307 Commented Feb 14, 2018 at 9:15
-
1
@user3808307 you can try in the console:
[...(true && ['a'])]
gives['a']
but[...(false && ['a'])]
yield aTypeError
. – Seb D. Commented Feb 14, 2018 at 9:41
2 Answers
Reset to default 7No, it is not possible, because all iterable objects are truthy.
If cond
is falsey, you have a value which is not spreadable by Symbol.iterator
The built-in types with a @@iterator method are:
Array.prototype[@@iterator]()
TypedArray.prototype[@@iterator]()
String.prototype[@@iterator]()
Map.prototype[@@iterator]()
Set.prototype[@@iterator]()
var cond = false;
const arr = [
...(cond && ['a']), // throws error, function expected
'b',
];
console.log(arr);
Yes, it's possible. But maybe that's an overkill that performs worse and decreases the readability.
const arr = [];
arr.push(...[false && 'nope'].filter(v => v));
arr.push(...[true && 'yep'].filter(v => v));
arr.push(...[false && 'no', true && 'yes'].filter(v => v));
console.info(arr);
As @Nina Scholz indicated an iterable is required for spread operator to work. By using a second array (which may be empty) we can eventually reach the following state (arr.push()
).
本文标签: javascriptConditionally pushing to an array with spread operatorStack Overflow
版权声明:本文标题:javascript - Conditionally pushing to an array with spread operator - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743604430a2509084.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论