Skip to content
Advertisement

calculating no of days in given month

I have the LatestValuesDate 'Apr','May','Jun'.I have array with no of days for the months. If LatestValuesDate is may I want to show the number of days =61. if LatestValuesDate is Jul I want to show the number of days =91 but now I got only 31

JavaScript

Advertisement

Answer

For your expected result, you would need to loop through the array and sum the values into a variable. But you will have to stop the loop after adding the value according to your $val variable. You can achieve that using the following code:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement