I am getting a date that comes in GMT format, Fri, 18 Oct 2013 11:38:23 GMT. The problem is that the time is messing up the timeline that I am using.
How can I strip ou
Just cut it with substring:
substring
var str = 'Fri, 18 Oct 2013 11:38:23 GMT'; str = str.substring(0,tomorrow.toLocaleString().indexOf(':')-3);