I'm trying to format a Date String in React Native. ex: 2nd NOV. My problem is I have to show as it mention in the image. enter image description here
Asked
Active
Viewed 67 times
0
-
Can you share code you have already? – Alopwer Aug 22 '22 at 10:19
2 Answers
0
You could use MomentJS https://momentjs.com/ - it is a nice easy Library that lets you manipulate Dates and also Format it the way you want it. Check the "Display" Section in the Docs and there the "format" Function.
I guess in your case it would look something like this:
Moment(yourDate).format("DO MMM");

yesIamFaded
- 1,970
- 2
- 20
- 45
-2
A js alternative :
new Date().toLocaleDateString('en', { day: 'numeric', month: 'short' })
it would display the day and month according to the locale you choose

Lk77
- 2,203
- 1
- 10
- 15