空の配列を作成するのは簡単です:
const foo:string[] = [];
あるコンテンツで事前に埋められた配列を作成するには、ES6Array.prototype.fillを使います:
Array.prototype.fill
const foo:string[] = new Array(3).fill(''); console.log(foo); // ['','',''];
最終更新 2 年前