在TypeScript中基于最小和最大数生成数组

时间:2018-03-14 11:40:17

标签: typescript

我需要在TypeScript中生成一个数字数组,它们之间的差异为5000。

因此,例如该函数应该能够取minmax并基于它应该生成数字。因此,请考虑min为0且max为20000,生成的数组应为:

[0, 5000, 10000, 15000, 20000]

1 个答案:

答案 0 :(得分:0)

  1. 首先声明一个数组。
  2. 使用参数(最小值和最大值)创建方法。
  3. 使用所需参数调用方法。

      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);