value 填充值
start 填充其实位置,可以省略
end 填充结束为止 可以省略 实际结束为止是end-1
实例
const arr3=[1,2,3,4,5,6,7]
arr3.fill(7,2,4)
//输出结果。1,2,7,7,5,6,7