fill() 方法用一个固定值填充一个数组中从起始索引到终止索引内的全部元素。不包括终止索引。

const list = [1, 2, 3, 4, 5];
list.fill(0); // [0, 0, 0, 0, 0]