Estimatimated Delivery Date on product page

Below code give Estimated delivery dates in numbers (9/8/2022). I want to show in this formate: Sep 8, 2022
What changes should I do in this code?

<tr>
<td style="width: 509px;">
<div style="text-align: center;"><span style="color: #8d0505;"> Order today and you'll receive your package on:<strong>
  
<script>// <![CDATA[
var currentTime = new Date();
currentTime.setDate(currentTime.getDate() + 14); 
  
var month = currentTime.getMonth() + 1;
var day = currentTime.getDate();
var year = currentTime.getFullYear();
document.write(month + "/" + day + "/" + year);
// ]]></script>
</strong>* </span>
</div>
</td>
</tr>

Hi @keyurdodiya ,

I’m Richard Nguyen - CRO Expert at PageFly- Free Landing Page Builder. I hope that my recommendations based on 6 years of providing solutions for more than 100.000 merchants can be beneficial to you in improving your store performance.

About your question, you can try to apply this code to try!


 Order today and you'll receive your package on: * 

Hope this can help you!
If you are looking for some tips to boosts your conversion rate, you can take a look at this article.

Hi @PageFly-Richard & @keyurdodiya thank you both for this shopify DIY delivery date on product page!!

Could you give a step by step explanation where to put the above code?

I use the OOTS FLEX-Theme.

thank you both in advance for a hint

Chris