cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X

How to convert date offset value(Number) to datetime format?

sarathi
12-Amethyst

How to convert date offset value(Number) to datetime format?

Hi

i need find yesterday date and  also i need to set hours also, but if i used sethours function datetime format automatically convert into number , if i apply function  setDate on offset value it will thourgh error?

here is code

var d = new Date();
var c =d.setHours(00,00,00,000);
var result =c.setDate(c.getDate() - 1);

i needto find yesterday date and  hours should be 00,00,00,000

ACCEPTED SOLUTION

Accepted Solutions

That will be the code, but you must know that it will be done at Server Side TimeZone:

 

var result = new Date();
result = dateAddDays(result,-1);
result.setHours(0,0,0,0);

View solution in original post

1 REPLY 1

That will be the code, but you must know that it will be done at Server Side TimeZone:

 

var result = new Date();
result = dateAddDays(result,-1);
result.setHours(0,0,0,0);
Announcements

Top Tags