I want to implement +/- functionality in date/time in Javascript.
Here is example.
var now = new Date("Sun Dec 09 01:36:45 EST 2012");
console.log(now + 3min);
How can I do this? Is there any example like this?
I want to implement +/- functionality in date/time in Javascript.
Here is example.
var now = new Date("Sun Dec 09 01:36:45 EST 2012");
console.log(now + 3min);
How can I do this? Is there any example like this?