1 配置VSCode
打开Settings,搜索 file nesting
- File Nesting: Enabled打开
- File Nesting: Patterns里*.ts增加map和.d.ts配置,如下图
配置完成后,默认会把.d.ts、.js折叠到.ts下,如下图:
2 Explorer中默认折叠
配置搜索expand
更改为alwaysCollapse
1 配置VSCode
打开Settings,搜索 file nesting
配置完成后,默认会把.d.ts、.js折叠到.ts下,如下图:
2 Explorer中默认折叠
配置搜索expand
更改为alwaysCollapse
数据例子:
const arr1 = [
{ id: 1, name: 'John' },
{ id: 2, name: 'Alice' },
{ id: 3, name: 'Bob' }
];
const arr2 = [
{ id: 2, age: 30 },
{ id: 3, age: 25 },
{ id: 4, age: 28 }
];
代码:
const mergedArray = arr1.map((item) => {[......]