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\', \'
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); }