FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [View Raw Code]   [Original HTTPS Page]

til/javascript/init-array.md.md at main · mopig/til · GitHub

/ til Public

Latest commit

 

History

History
17 lines (12 loc) · 258 Bytes

File metadata and controls

17 lines (12 loc) · 258 Bytes

初始化指定长度的 Array

下面四种方法可以解决

// 方法一
Array.apply(null, Array(7))

// 方法二
Array(10).fill(0)

// 方法三
Array.from({length: 10}, (v, i) => i)

// 方法四
[...Array(10).map((v, i) => i)]

Back | FazBrowse Home | New Git URL