I have following time "Mon Jun 22 03:45:24 PDT 2015" how can I get Meridian using Javascript. I was doing this:
d= Mon Jun 22 03:45:24 PDT 2015;
var hours = d.getHours();
var meridiem = "AM";
if (d.getHours() > 12) {
hours = d.getHours() % 12;
if (hours == 2) {
hours = 12;
}
meridiem = "PM";
}
But its not working in IE 8.
I have following time "Mon Jun 22 03:45:24 PDT 2015" how can I get Meridian using Javascript. I was doing this:
d= Mon Jun 22 03:45:24 PDT 2015;
var hours = d.getHours();
var meridiem = "AM";
if (d.getHours() > 12) {
hours = d.getHours() % 12;
if (hours == 2) {
hours = 12;
}
meridiem = "PM";
}
But its not working in IE 8.
Share Improve this question edited Jul 22, 2015 at 12:15 depperm 10.8k4 gold badges46 silver badges68 bronze badges asked Jul 22, 2015 at 12:13 BASEER HAIDER JAFRIBASEER HAIDER JAFRI 9491 gold badge17 silver badges35 bronze badges 3-
1
I don't get what
d= Mon Jun 22 03:45:24 PDT 2015;
is supposed to do. That isn't even legal JavaScript code. – Zia Ur Rehman Commented Jul 22, 2015 at 12:19 - In IE 8 I am getting Nan so I used following method function convertDateFromISO(s) { s = s.split(/\D/); return new Date(Date.UTC(s[0], --s[1] || '', s[2] || '', s[3] || '', s[4] || '', s[5] || '', s[6] || '')) } which gives me this date "Mon Jun 22 03:45:24 PDT 2015" – BASEER HAIDER JAFRI Commented Jul 22, 2015 at 12:22
-
How exactly are you getting
NaN
? If you want the current date you can donew Date()
. If you already have date in ISO format, you can parse it directly usingnew Date("Mon Jun 22 03:45:24 PDT 2015")
. Are you saying using(new Date("Mon Jun 22 03:45:24 PDT 2015")).getTime()
gives youNaN
in IE8? (Sorry can't reproduce, don't have IE). – Zia Ur Rehman Commented Jul 22, 2015 at 12:43
4 Answers
Reset to default 5you define
d= Mon Jun 22 03:45:24 PDT 2015;
actually it is nothing in javascript some browser more intelligent some not, it's up to the browser behaviour you have to tell javascript like that
function getCurrentTime() {
var currentTime;
// here we can give our date
var currentDate = new Date("Mon Jun 22 03:45:24 PDT 2015");
// OR we can define like that also for current date
// var currentDate = new Date();
var hour = currentDate.getHours();
var meridiem = hour >= 12 ? "PM" : "AM";
currentTime = ((hour + 11) % 12 + 1) + ":" + currentDate.getMinutes() + meridiem;
return currentTime;
}
console.log(getCurrentTime());
We can get time in 12 hour format, including the meridian by using the Date.prototype.toLocaleTimeString() method with a US English argument which returns the time in AM/PM. Without the argument 'en-US'
date will return the format it deems appropriate for your timezone.
From there we can utilise the slice method to get the last two characters of the timestamp using a negative index:
var d = new Date("Mon Jun 22 03:45:24 PDT 2015")
// US English uses 12-hour time with AM/PM
var timestamp = d.toLocaleTimeString('en-US');
// timestamp → "03:45:24 AM"
var meridian = timestamp.slice(-2);
// meridian → "AM"
One liner for brevity:
var meridian = new Date("Mon Jun 22 03:45:24 PDT 2015").toLocaleTimeString().slice(-2);
According to the documentation for JavaScript Date
object here, there is no method for directly getting 12-hour hours and therefore no method for getting am/pm directly from the Date
object.
You can get hours (24-hour format) which you can use to get 12-hour hours and am/pm. (You've already done it but I don't understand what you're trying to do in your code.)
This would be one way to do this.
This code is inspired by @tinka.
var d = new Date("Mon Jun 22 03:45:24 PDT 2015");
var h = (d.getHours() + 11) % 12 + 1; //Courtesy @tinka
var m = h > 12 ? 'pm' : 'am';
And you can always add methods to Date.prototype
if you're gonna be using them repeatedly.
Date.prototype.getHours12 = function() {
return (this.getHours() + 11) % 12 + 1; // edited.
}
Date.prototype.getMeridiem = function() {
return this.getHours() > 12 ? 'pm' : 'am';
}
It should work on all platforms.
With Date object:
getMeridiem(date: Date) {
return date.toLocaleTimeString().split(' ')[1];
}