Skip to content
Advertisement

How to create date intervals in javascript

I need to call an api, passing start and end date, but given that the interval is too wide I am thinking that I need to do several calls using smaller date intervals. This is how I am trying to set start and stop dates:

JavaScript

but I am getting this result (start date is updated correctly but stop date doesn’t change accordingly):

JavaScript

Can you please tell me what I am doing wrong?

Advertisement

Answer

I geuss this answer provides some clarity. The following works:

JavaScript
Advertisement