提交 0561e5a2 编写于 作者: 杜庆泉's avatar 杜庆泉

Update syntax-uts.md

上级 55e627d6
......@@ -1678,6 +1678,12 @@ sort() 方法对数组的元素进行排序,并返回数组。
|:-:|:-:|:-:|
|√|√|x|
```ts
const array2 = [5, 1, 4, 2, 3];
array2.sort((a: number, b: number):number => a - b);
// expect(array2).toEqual([1, 2, 3, 4, 5]);
```
#### splice
splice() 方法通过删除或替换现有元素或者原地添加新的元素来修改数组,并以数组形式返回被修改的内容。此方法会改变原数组。
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册