我需要在TypeScript中生成一个数字数组,它们之间的差异为5000。
因此,例如该函数应该能够取min
和max
并基于它应该生成数字。因此,请考虑min
为0且max
为20000,生成的数组应为:
[0, 5000, 10000, 15000, 20000]
答案 0 :(得分:0)
使用所需参数调用方法。
genArray = [];
generateArray(min, max) {
let count = min;
for(count=min; count<=max; count=count+5000) {
console.log(count);
this.genArray.push(count);
}
generateArray(0,20000);