如何将数组转换为具有相应后续值的对象?
我正在尝试转换数组: filterArrays([1, 2, true, true, false, '1', 'a', 3, {}, null, undefined])
以下模式
{
"number": [
1,
2,
3
],
"boolean": [
true,
true,
false
],
"string": [
"1",
"a"
],
"object": [
{},
null
],
"undefined": [
null
]
}
这是我的尝试:它按预期值工作,有更好的方法来解决这个问题吗? 谢谢;
const filterArrays = (values) => {
return values.reduce((acc, obj) => {
const key = typeof obj;
if(acc[key]) {
acc[key].push(obj)
}
else {
acc[key] = [obj]
}
return acc;
}, {});
}
I am trying convert an array: filterArrays([1, 2, true, true, false, '1', 'a', 3, {}, null, undefined])
following pattern
{
"number": [
1,
2,
3
],
"boolean": [
true,
true,
false
],
"string": [
"1",
"a"
],
"object": [
{},
null
],
"undefined": [
null
]
}
Here is my try: which is working as expected value, Is there a better way to solve this problem?
Thanks;
const filterArrays = (values) => {
return values.reduce((acc, obj) => {
const key = typeof obj;
if(acc[key]) {
acc[key].push(obj)
}
else {
acc[key] = [obj]
}
return acc;
}, {});
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论