I need to create one array in javascript like this. It should contain current time + next 10 times with the interval of 5 mins
array = [1.45, 1.50, 1.55, 2.00, 2.05, 2.10, 2.15, 2.20, 2.25, 2.30];
How I will create this kind of an array using javascript.
1 Answer