Jul 24, 2015
[Solution] Get Hourly Time By Giving 24 Hour Time
Just Pass Your 24 hour Time to This Function It Will Return You The Desired Data.
eg 1300 - 1.00 PM
eg 0100 - 1.00 AM
function getHourlyTime(time){
var Hours = parseInt(time / 100);
var Minutes = time % 100;
if(Minutes <10){
Minutes = '0'+Minutes;
}
if(Hours == 0){
return '12:'+Minutes+' AM';
}else if(Hours < 10){
return '0'+Hours+':'+Minutes+' AM';
}else if(Hours < 12){
return Hours+':'+Minutes+' AM';
}else if(Hours == 12){
return '12:'+Minutes+' PM';
}else{
Hours = Hours -12;
if(Hours < 10){
return '0'+Hours+':'+Minutes+' PM';
}else if(Hours < 12){
return Hours+':'+Minutes+' PM';
}
}
}
Done By +Nifal Nizar
Subscribe to:
Post Comments (Atom)
JWT Token Decode Using Jquery
When it come to authentication we use many mechanism. Ones the user authenticated we must keep these details somewhere safe. So we can share...
-
In this blog post Ill explain you the logic behind the Sri Lankan National Identity Card (NIC). Sri Lanka now has Old NIC No Format as well ...
-
In This Article I Will Demonstrate You To Create A Simple Chat Program Using Java Remote Method Invocation(RMI). Following Program Supports ...
-
In a windows form application sometimes you may want to import a excel file to a data grid view. In this blog post Ill demonstrate to you gu...
No comments:
Post a Comment