摘要:
## 安装PSReadLine ```shell Install-Module -Name PSReadLine -AllowClobber -Force ``` ## 打开$profile ```shell notepad $profile ``` ## 配置补全 在$profile中配置 ``` 阅读全文
摘要:
从 ES2019 中开始引入了一种扁平化数组的新方法,可以展平任何深度的数组。 ### flat `flat()` 方法创建一个新数组,其中所有子数组元素以递归方式连接到特定深度。 > 语法:array.flat(depth) - **array** : `flat()` 方法将在给定的数组中使用。 阅读全文