facing issue when customize month order in locale Ja with bsdatepicker
const customMonthOrder: number[] = [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0, 1]; // March to February // Get the default full month names const defaultMonthNames: string[] = jaLocale.months as string[]; // Create an array of full month names in the custom order const customMonthNames: string[] = customMonthOrder.map(index => defaultMonthNames[index]); // Create […]