Changing T in date to normal date [duplicate]










0















This question already has an answer here:



  • How to format a JavaScript date

    47 answers



I am using JSX to show data in my front end



 <p className="projectBoxes-other-para">data["end.time"] </p>


I am getting the date from API call. The above displays something like this



2016-10-30T11:25:38-04:00


Now, the T doesn't make sense to me and something I don't want show my users as well



So how can I convert it into my GMT time? in JSX? Also, if someone can explain me what does T mean here?










share|improve this question













marked as duplicate by Jonas Wilms javascript
Users with the  javascript badge can single-handedly close javascript questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Nov 11 at 16:58


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.














  • The T seperates day and time, and you have to parse it as a Date and then format it. MomentJS is a popular library for that.
    – Jonas Wilms
    Nov 11 at 16:59















0















This question already has an answer here:



  • How to format a JavaScript date

    47 answers



I am using JSX to show data in my front end



 <p className="projectBoxes-other-para">data["end.time"] </p>


I am getting the date from API call. The above displays something like this



2016-10-30T11:25:38-04:00


Now, the T doesn't make sense to me and something I don't want show my users as well



So how can I convert it into my GMT time? in JSX? Also, if someone can explain me what does T mean here?










share|improve this question













marked as duplicate by Jonas Wilms javascript
Users with the  javascript badge can single-handedly close javascript questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Nov 11 at 16:58


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.














  • The T seperates day and time, and you have to parse it as a Date and then format it. MomentJS is a popular library for that.
    – Jonas Wilms
    Nov 11 at 16:59













0












0








0








This question already has an answer here:



  • How to format a JavaScript date

    47 answers



I am using JSX to show data in my front end



 <p className="projectBoxes-other-para">data["end.time"] </p>


I am getting the date from API call. The above displays something like this



2016-10-30T11:25:38-04:00


Now, the T doesn't make sense to me and something I don't want show my users as well



So how can I convert it into my GMT time? in JSX? Also, if someone can explain me what does T mean here?










share|improve this question














This question already has an answer here:



  • How to format a JavaScript date

    47 answers



I am using JSX to show data in my front end



 <p className="projectBoxes-other-para">data["end.time"] </p>


I am getting the date from API call. The above displays something like this



2016-10-30T11:25:38-04:00


Now, the T doesn't make sense to me and something I don't want show my users as well



So how can I convert it into my GMT time? in JSX? Also, if someone can explain me what does T mean here?





This question already has an answer here:



  • How to format a JavaScript date

    47 answers







javascript






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 11 at 16:42









NoobieSatan

1,061525




1,061525




marked as duplicate by Jonas Wilms javascript
Users with the  javascript badge can single-handedly close javascript questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Nov 11 at 16:58


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






marked as duplicate by Jonas Wilms javascript
Users with the  javascript badge can single-handedly close javascript questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Nov 11 at 16:58


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.













  • The T seperates day and time, and you have to parse it as a Date and then format it. MomentJS is a popular library for that.
    – Jonas Wilms
    Nov 11 at 16:59
















  • The T seperates day and time, and you have to parse it as a Date and then format it. MomentJS is a popular library for that.
    – Jonas Wilms
    Nov 11 at 16:59















The T seperates day and time, and you have to parse it as a Date and then format it. MomentJS is a popular library for that.
– Jonas Wilms
Nov 11 at 16:59




The T seperates day and time, and you have to parse it as a Date and then format it. MomentJS is a popular library for that.
– Jonas Wilms
Nov 11 at 16:59












1 Answer
1






active

oldest

votes


















0














Short answer:



 <p className="projectBoxes-other-para">
new Date(data['end.time']).toLocaleDateString()
</p>


'T' is what separates the date from the time in ISO representation. It's what you get from javascript's Date().toISOString().



Since your input is a string and not a Date() class, you need to convert it first by creating a Date object from it:



let date = new Date(data["end.time"])


There are lots of methods of formatting dates. You haven't said what you want, so hard to make a recommendation, but for example, to avoid the 'T', you can use extract the date and time independently:






let now = new Date('2016-10-30T11:25:38-04:00');
let dateString = now.toLocaleDateString();
let timeString = now.toLocaleTimeString();
console.log(dateString + ', ' + timeString);








share|improve this answer






















  • .toLocaleDateString is not a function
    – NoobieSatan
    Nov 11 at 17:03










  • It's a method of the javascript Date() class. See w3schools.com/jsref/jsref_tolocaledatestring.asp
    – Jim B.
    Nov 11 at 17:04











  • I am doing something like this data["end.time"].toLocaleDateString()} If i do something like this data["end.time] it logs this 2016-11-15T06:00:00-05:00
    – NoobieSatan
    Nov 11 at 17:06










  • Ah, your data["end.time"] is a string. I'll update the answer...
    – Jim B.
    Nov 11 at 17:07

















1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Short answer:



 <p className="projectBoxes-other-para">
new Date(data['end.time']).toLocaleDateString()
</p>


'T' is what separates the date from the time in ISO representation. It's what you get from javascript's Date().toISOString().



Since your input is a string and not a Date() class, you need to convert it first by creating a Date object from it:



let date = new Date(data["end.time"])


There are lots of methods of formatting dates. You haven't said what you want, so hard to make a recommendation, but for example, to avoid the 'T', you can use extract the date and time independently:






let now = new Date('2016-10-30T11:25:38-04:00');
let dateString = now.toLocaleDateString();
let timeString = now.toLocaleTimeString();
console.log(dateString + ', ' + timeString);








share|improve this answer






















  • .toLocaleDateString is not a function
    – NoobieSatan
    Nov 11 at 17:03










  • It's a method of the javascript Date() class. See w3schools.com/jsref/jsref_tolocaledatestring.asp
    – Jim B.
    Nov 11 at 17:04











  • I am doing something like this data["end.time"].toLocaleDateString()} If i do something like this data["end.time] it logs this 2016-11-15T06:00:00-05:00
    – NoobieSatan
    Nov 11 at 17:06










  • Ah, your data["end.time"] is a string. I'll update the answer...
    – Jim B.
    Nov 11 at 17:07















0














Short answer:



 <p className="projectBoxes-other-para">
new Date(data['end.time']).toLocaleDateString()
</p>


'T' is what separates the date from the time in ISO representation. It's what you get from javascript's Date().toISOString().



Since your input is a string and not a Date() class, you need to convert it first by creating a Date object from it:



let date = new Date(data["end.time"])


There are lots of methods of formatting dates. You haven't said what you want, so hard to make a recommendation, but for example, to avoid the 'T', you can use extract the date and time independently:






let now = new Date('2016-10-30T11:25:38-04:00');
let dateString = now.toLocaleDateString();
let timeString = now.toLocaleTimeString();
console.log(dateString + ', ' + timeString);








share|improve this answer






















  • .toLocaleDateString is not a function
    – NoobieSatan
    Nov 11 at 17:03










  • It's a method of the javascript Date() class. See w3schools.com/jsref/jsref_tolocaledatestring.asp
    – Jim B.
    Nov 11 at 17:04











  • I am doing something like this data["end.time"].toLocaleDateString()} If i do something like this data["end.time] it logs this 2016-11-15T06:00:00-05:00
    – NoobieSatan
    Nov 11 at 17:06










  • Ah, your data["end.time"] is a string. I'll update the answer...
    – Jim B.
    Nov 11 at 17:07













0












0








0






Short answer:



 <p className="projectBoxes-other-para">
new Date(data['end.time']).toLocaleDateString()
</p>


'T' is what separates the date from the time in ISO representation. It's what you get from javascript's Date().toISOString().



Since your input is a string and not a Date() class, you need to convert it first by creating a Date object from it:



let date = new Date(data["end.time"])


There are lots of methods of formatting dates. You haven't said what you want, so hard to make a recommendation, but for example, to avoid the 'T', you can use extract the date and time independently:






let now = new Date('2016-10-30T11:25:38-04:00');
let dateString = now.toLocaleDateString();
let timeString = now.toLocaleTimeString();
console.log(dateString + ', ' + timeString);








share|improve this answer














Short answer:



 <p className="projectBoxes-other-para">
new Date(data['end.time']).toLocaleDateString()
</p>


'T' is what separates the date from the time in ISO representation. It's what you get from javascript's Date().toISOString().



Since your input is a string and not a Date() class, you need to convert it first by creating a Date object from it:



let date = new Date(data["end.time"])


There are lots of methods of formatting dates. You haven't said what you want, so hard to make a recommendation, but for example, to avoid the 'T', you can use extract the date and time independently:






let now = new Date('2016-10-30T11:25:38-04:00');
let dateString = now.toLocaleDateString();
let timeString = now.toLocaleTimeString();
console.log(dateString + ', ' + timeString);








let now = new Date('2016-10-30T11:25:38-04:00');
let dateString = now.toLocaleDateString();
let timeString = now.toLocaleTimeString();
console.log(dateString + ', ' + timeString);





let now = new Date('2016-10-30T11:25:38-04:00');
let dateString = now.toLocaleDateString();
let timeString = now.toLocaleTimeString();
console.log(dateString + ', ' + timeString);






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 11 at 17:14

























answered Nov 11 at 16:59









Jim B.

2,6561929




2,6561929











  • .toLocaleDateString is not a function
    – NoobieSatan
    Nov 11 at 17:03










  • It's a method of the javascript Date() class. See w3schools.com/jsref/jsref_tolocaledatestring.asp
    – Jim B.
    Nov 11 at 17:04











  • I am doing something like this data["end.time"].toLocaleDateString()} If i do something like this data["end.time] it logs this 2016-11-15T06:00:00-05:00
    – NoobieSatan
    Nov 11 at 17:06










  • Ah, your data["end.time"] is a string. I'll update the answer...
    – Jim B.
    Nov 11 at 17:07
















  • .toLocaleDateString is not a function
    – NoobieSatan
    Nov 11 at 17:03










  • It's a method of the javascript Date() class. See w3schools.com/jsref/jsref_tolocaledatestring.asp
    – Jim B.
    Nov 11 at 17:04











  • I am doing something like this data["end.time"].toLocaleDateString()} If i do something like this data["end.time] it logs this 2016-11-15T06:00:00-05:00
    – NoobieSatan
    Nov 11 at 17:06










  • Ah, your data["end.time"] is a string. I'll update the answer...
    – Jim B.
    Nov 11 at 17:07















.toLocaleDateString is not a function
– NoobieSatan
Nov 11 at 17:03




.toLocaleDateString is not a function
– NoobieSatan
Nov 11 at 17:03












It's a method of the javascript Date() class. See w3schools.com/jsref/jsref_tolocaledatestring.asp
– Jim B.
Nov 11 at 17:04





It's a method of the javascript Date() class. See w3schools.com/jsref/jsref_tolocaledatestring.asp
– Jim B.
Nov 11 at 17:04













I am doing something like this data["end.time"].toLocaleDateString()} If i do something like this data["end.time] it logs this 2016-11-15T06:00:00-05:00
– NoobieSatan
Nov 11 at 17:06




I am doing something like this data["end.time"].toLocaleDateString()} If i do something like this data["end.time] it logs this 2016-11-15T06:00:00-05:00
– NoobieSatan
Nov 11 at 17:06












Ah, your data["end.time"] is a string. I'll update the answer...
– Jim B.
Nov 11 at 17:07




Ah, your data["end.time"] is a string. I'll update the answer...
– Jim B.
Nov 11 at 17:07



Popular posts from this blog

How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

Syphilis

Darth Vader #20