I have to generate a list of hours between 10:00 and 19:30 in minutes of 30 minutes with a for loop. (eg 10:00 - 10:30 - 11:00 ......)
At the moment I've done it like that but I do not think it's well done.
for (var i=10; i<20; i++){
document.write(i + ":00 " + i + "" + ":30" + " ");
}