Talk:Holidays related to Easter: Difference between revisions

m
 
Line 91:
 
function getHolidaysDates(year, church) {
const
let Easter = getEasterDate(year, church, year < firstYearOfNewStyle ? 1 : 2);,
const holidays = church == 1 ? OrthodoxHolidays : CatholicHolidays;
return year + ": " +
holidays.map(h => {
letconst d = new Date(year, Easter[1] - 1, Easter[0]);
d.setDate(d.getDate() + h[1] - 1);
return h[0] + ": " + new Intl.DateTimeFormat("ru", { month: "numeric", day: "numeric" }).format(d);