padStart(),padEnd()

发布时间:2023年12月29日

今天获取当前时间的时候,gpt输出这样的代码,padStart(2, '0')

function getCurrentDateFormatted() {
  const currentDate = new Date();
  
  const month = (currentDate.getMonth() + 1).toString().padStart(2, '0');
  const day = currentDate.getDate().toString().padStart(2, '0');
  
  return `_${month}${day}`;
}

const formattedDate = getCurrentDateFormatted();
console.log(formattedDate);

看下MDN对它的解释

有头就有尾

文章来源:https://blog.csdn.net/m0_47999208/article/details/135296077
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。