You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
358 B

2 years ago
  1. // 函数的参数可传可不传,后面添加 ?
  2. // 可选参数只能出现在参数列表的最后,就是说可选参数后面不能再出现必选参数
  3. // start 和 end 参数可传可不传
  4. function mySlice(start?: number, end?: number): void {
  5. console.log('起始索引:', start, '结束索引:', end)
  6. }
  7. mySlice()
  8. mySlice(1)
  9. mySlice(1, 3)