I'm creating a Github User Search app and I am currently getting the user data from the Github API. The date format of the user.created_at date shows as '2011-01-25T18:44:36Z' How can I format this date to 'Joined 25 January 2011'? I'm accessing / inserting the HTML through JS.
<div class="profile-user-wrapper">
<div class="profile-name">${user.name}</div>
<div class="username">@${user.login}</div>
<div class="join-date">${user.created_at}</div>
</div>
[Image of my app][1] [1]: https://i.stack.imgur.com/Eb2Hp.png