VANHIEP.NET - Làm web giá rẻ - Thiết Kế Website - Thiết Kế Ứng Dụng Mobile
Cách hiển thị thời gian int sang string trong javacript

Cách hiển thị thời gian int sang string trong javacript

var date_droadcasting = new Date(1000*element.date_droadcasting);

 date_droadcasting = new Intl.DateTimeFormat(['ban', 'id']).format(date_droadcasting);

+ element.date_droadcasting : dữ liệu int

+ Kết quả : 20/12/2021

   var options = {

     hour: 'numeric', minute: 'numeric',

     timeZone: 'Asia/Bangkok',

          };

          var time = new Date(1000*element.time_droadcasting)

         time = new Intl.DateTimeFormat('en-AU', options).format(time);

 

 + element.time_droadcasting : dữ liệu int của giờ

+ Kết quả : 10:00 am