js arguments类数组转化为数组的几种方法

web_haohao

分类: JavaScript、WEB前端 2669 1

[].slice.apply(arguments)

[].concat.apply([],arguments)

es6

Array.from(arguments)

[…arguments]

  • 3人 Love
  • 1人 Haha
  • 1人 Wow
  • 0人 Sad
  • 0人 Angry

作者简介:web_haohao

共 1 条评论关于 “js arguments类数组转化为数组的几种方法”

Loading...