新数组方法
toReversed/toSpliced/toSorted,原方法的非破坏性替代方法
- toReversed
1 | const array = [1, 2, 3]; |
- toSorted
1 | const array = [1, 3, 7, 11, 6, 9]; |
- toSpliced
1 | const array = [1, 3, 7, 11, 6, 9]; |
findLast/findLastIndex 数组从后查询方法
1 | const array = [1, 2, 3, 4, 5]; |
with方法,替换原数组的对应值
1 | const arr = [1, 2, 3, 4, 5]; |
使用Symbols 作为 WeakMap 键
1 | const key1 = Symbol("key1"); |
Hashbang
1 |
|
新类型 Record/Tuple
1 | const person = { |
管道运算符
1 | const arr = [1, 2, 3, 4, 5] |
异步迭代器
1 | // 迭代器 |
1 | // 异步迭代器 |