how to create an array of times with half hour intervals instead of declare in variable

后端 未结 3 439
深忆病人
深忆病人 2021-01-24 04:42

i have an long const values below like this ,is it possible to create in function in typescript to reduce a long const.

export const DepartTime = 
[\'00.00\', \'         


        
3条回答
  •  花落未央
    2021-01-24 05:01

    Below code works for me I have tried using https://stackoverflow.com/a/8043061/9516784

        var hrs = [];
        for (var i = 0; i <= 48; i++) {
          var n = i%2==0 ? i/2+'.00' : (i+1)/2-1+'.30';
          if(n<10) {
            n = '0'+n;
          }   
          hrs.push(n);
        }
    

提交回复
热议问题