{
Consejos si ya no podes descansa jeje, hoy ocupaba realizar este calculo de manera manual pero no lo podía hacer cuando solo era calcular los meses pendientes para tu cumpleaños a partir de la edad de tu nacimiento xd
Aquí un simple ejemplo utilizando una función que lo realiza código
<html> <body> <p>Cumple</p> <input type="date" onblur="monthsPending(this.value)"> <br> <br> <script> function monthsPending(value) { const clientMonth=new Date(value).getMonth(); const currentMonth=new Date().getMonth(); const x=currentMonth<clientMonth?0:12; const month = clientMonth+x-currentMonth; console.log(' pendings month : '+month);} </script> </body> </html>}