类数组转成成数组的几种方式:
const linkArray
1. Array.from(linkArray)
2. [...linkArray]
3. Array.prototype.slice.call(linkArray)
评论