创建数组
创建数组 创建数组十分简单: 你也可以在创建数组时使用 ES6 的 Array.prototype.fill 方法为数组填充数据:
2018-9-5 14:0
创建数组
创建数组十分简单:
const foo: string[] = [];
你也可以在创建数组时使用 ES6 的 Array.prototype.fill
方法为数组填充数据:
const foo: string[] = new Array(3).fill('');
console.log(foo); // 会输出 ['','','']
评论区