Horje
30 mins 24 hours jquery loop Code Example
30 mins 24 hours jquery loop
var x = 30; //minutes interval
var times = []; // time array
var tt = 0; // start time
var ap = ['AM', 'PM']; // AM-PM

//loop to increment the time and push results in array
for (var i=0;tt<24*60; i++) {
  var hh = Math.floor(tt/60); // getting hours of day in 0-24 format
  var mm = (tt%60); // getting minutes of the hour in 0-55 format
  times[i] = ("0" + (hh % 12)).slice(-2) + ':' + ("0" + mm).slice(-2) + ap[Math.floor(hh/12)]; // pushing data in array in [00:00 - 12:00 AM/PM format]
  tt = tt + x;
}

console.log(times);




Javascript

Related
how to check for special characters on a phone number with js Code Example how to check for special characters on a phone number with js Code Example
cookie-parser in node js Code Example cookie-parser in node js Code Example
jquery.MultiFile Code Example jquery.MultiFile Code Example
myModal Code Example myModal Code Example
create object from number Code Example create object from number Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7