monu
monu

Reputation: 33

How to change date format in model of attribute in sails.js?

How we can set the date format of attribute in model from Tue Apr 12 2016 17:16:12 GMT+0530 (India Standard Time) to 2016-04-12 17:16:12?

Upvotes: 3

Views: 440

Answers (1)

Naman
Naman

Reputation: 31878

I think this is what you need :

inputDate.format("isoDateTime");

Upvotes: 1

Related Questions