convert 24 time to 12

Convert 24 Time to 12
   $(document).ready(function(){
     
      const time_ = "18:10"
      const _12hourtime = convert24to12(time_)
      console.log(_12hourtime)//06:10 PM
       function convert24to12(time){
        return moment(time,'HH:mm').format('hh:mm A');
       }
      }
    )
 





Comments