skip to Main Content

Is there any way to convert current date and time of Bangladesh into Bangla Language using JavaScript?

I have a time like "Sat Feb 10 2024 15:33:51 GMT+0600 (Bangladesh Standard Time)" . I want to convert that time into Bangla language. For example সময়: ০৯:৫৯, মঙ্গলবার, ২৬ ডিসেম্বর, ২০২৩ ১২ পৌষ ১৪৩০ বঙ্গাব্দ, ০৯:৫৯ পূর্বাহ্ন how to…

VIEW QUESTION

Does Flutter intl package format minutes correctly?

The following code returns a date that is off by several minutes (note that I am running in US Central DST): final givenDate = DateTime.parse('1980-01-03T11:05:16Z'); const expectedDateString = '01/03/1980 11:05:16'; print("givenDate is ${givenDate.toString()}"); print( "DateFormat('MM/dd/yyyy HH:MM:ss').format(givenDate) is ${DateFormat('MM/dd/yyyy HH:MM:ss').format(givenDate)}"); The…

VIEW QUESTION
Back To Top
Search