количество дней в месяце | number of days in a month - Forum

Forum Navigation
You need to log in to create posts and topics.

количество дней в месяце | number of days in a month

как узнать количество дней в текущем месяце?
how to get the number of days in the current month?

Получил из js

BeginJS
const date = new Date();
const year = date.getFullYear();
const month = date.getMonth()
const daysInMonth = new Date(year, month + 1, 0).getDate();
$App.MaxDay = daysInMonth;
EndJS

 

luishp has reacted to this post.
luishp