JavaScriptで0からnまでの配列を作成する


やりかた

Array.from({ length: 10 }).map((_, index) => 1 + index)

試しにブラウザで実行するとこんな感じになりました。

参考