Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

자바스크립트 날짜 형식

<시간/>

JavaScript에서 날짜 형식을 구현하기 위한 코드는 다음과 같습니다. -

예시

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.sample {
   font-size: 18px;
   font-weight: 500;
}
</style>
</head>
<body>
<h1>Date Format</h1>
<div class="sample"></div>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to see the different date formats</h3>
<script>
let fillEle = document.querySelector(".sample");
let date = [];
date.push(new Date('2020-01-20'));
date.push(new Date('2020-02'));
date.push(new Date('2020'));
date.push(new Date("2015-03-25T12:00:00Z"));
fillEle.innerHTML = date + '<br>';
document.querySelector(".Btn").addEventListener("click", () => {
   date.forEach(item=>{
      fillEle.innerHTML += item + '<br>'
    })
});
</script>
</body>
</html>

출력

자바스크립트 날짜 형식

"여기를 클릭" 버튼을 클릭하면 -

자바스크립트 날짜 형식