Im trying to get the last week's date in the format: "2015-06-23"
i.e
"2015-06-16"
Js:
t = new Date(); // will give Tue Jun 23 2015 21:00:47 GMT-0700 (PDT)
t.toISOString(); // will give "2015-06-24T04:00:47.955Z"
the above date format i'm getting from the server. but I would like to get the last week date instead this week in the above format. How can i achieve that?
Thanks for the help in advance!