JS时间格式转成字符串


formatNumber = n => {
      n = n.toString();
      return n[1] ? n : '0' + n
    };
    // 时间格式化
formatTime = date => {
       const year = date.getFullYear();
       const month = date.getMonth() + 1;
        const day = date.getDate();
        const hour = date.getHours()
        const minute = date.getMinutes()
        const second = date.getSeconds()
        return [year, month, day].map(formatNumber).join('-') + ' ' + [hour, minute, second].map(formatNumber).join(':')
   };

使用方法:

  let date = new Date("2020-6-8")

  let newDate = formatTime(date)  //  or formatTime(new Date())

  console.log(newDate, "==============")

  // 2020-06-08 ===============


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM