前端常用函数及其方法
说明:日常开发中需要关注的东西太多了,难免会有些东西容易遗忘,那么好记性不如烂笔头就体现出来了
生成一个数组
我有一个 数字,是根据计算得来的,但是现在我要把它扩展成一个数组
const count = 6
const arr = Array.from({ length: count }, (_, index) => index + 1)
// [1, 2, 3, 4, 5, 6]
const arr1 = Array.from({ length: 6 }, (_, index) => ({id: 1, percent: true}))
// [{…}, {…}, {…}, {…}, {…}, {…}]
标签:count,index,常用,const,函数,前端,length,Array
From: https://www.cnblogs.com/ymscq/p/17697451.html