I have a variable called workFrom that has time(hh:mm) as String at the FrontEnd(Angular JS). I would like to convert this to Date format before posting the data on to MongoDB with default date as 01/01/1970 and the time from whatever has been posted from workFrom. How do I do it?
Eg : workFrom : 11:40 should be converted to 01/01/1970 11:40 (according to the standard format of date used in MongoDB).
Thanks in advance
I have a variable called workFrom that has time(hh:mm) as String at the FrontEnd(Angular JS). I would like to convert this to Date format before posting the data on to MongoDB with default date as 01/01/1970 and the time from whatever has been posted from workFrom. How do I do it?
Eg : workFrom : 11:40 should be converted to 01/01/1970 11:40 (according to the standard format of date used in MongoDB).
Thanks in advance
Share Improve this question edited Nov 8, 2016 at 7:41 Vignesh asked Nov 8, 2016 at 6:49 VigneshVignesh 1512 gold badges5 silver badges13 bronze badges 3- You can use moment package to parse and validate dates. – abhishekkannojia Commented Nov 8, 2016 at 6:51
- I am a newbie to Node JS, So could you be more elaborate on how to convert @abhishekkannojia – Vignesh Commented Nov 8, 2016 at 7:16
-
1
You don't need a library:
'11:40'.split(':').reduce((h,m)=> new Date(h*3.6e6 + m*6e4).toISOString())
. – RobG Commented Nov 8, 2016 at 7:20
4 Answers
Reset to default 2Solution in vanila JS.
var input = '11:40';
var parts = input.split(':');
var minutes = parts[0]*60 +parts[1];
var inputDate = new Date(minutes * 60 * 1000);
console.log(inputDate);
Or use moment as wrote abhishekkannojia.
One simple approach can be like this:
workFrom = "11:40";
time = new Date("01/01/1970" + " " + workFrom);
console.log(time.getDate() +'/'+ time.getMonth() +'/'+ ime.getFullYear()+ ' '+ time.getHours() + ':' + time.getMinutes());
With using moment (Which I reend whenever you are dealing with date/time related problems):
let workFrom = "11:40";
let workFromMoment = moment(workFrom,'hh:mm')
let adjustedMoment = moment([1970,0,1]).hour(workFromMoment.hour()).minute(workFromMoment.minute())
let dateString = adjustedMoment.format('D/M/Y hh:mm')`
console.log(dateString);
This snippet, in turn, will produce the output of "1/1/1970 11:40"
var d = new Date("01/01/1970 11:40:0:0");
you can do it:
date="01/01/1970";
workFrom="11:40";
d = new Date(date +" "+workFrom);