2022.04.27
Javascript Date
const date = new Date()
console.log(date.getFullYear())
console.log(date.getMonth()) // +1
console.log(date.getDate())
console.log(date.getHours())
console.log(date.getMinutes())
console.log(date.getSeconds())
// 날짜출력방법
const res = `${year}.${month}.${day}`; //년.원.일 변수 res로
const today = document.querySelector('.date'); //data클래스
today.textContent = res;
'프론트엔드 > JavaScript' 카테고리의 다른 글
자바스크립트 구조분해할당과 전개연산자 (0) | 2022.04.28 |
---|---|
자바스크립트 객체(Object)데이터 (0) | 2022.04.28 |
자바스크립트 배열(Array)데이터 (0) | 2022.04.25 |
자바스크립트 숫자(Number)데이터, Math (0) | 2022.04.25 |
자바스크립트 화살표함수와 this (0) | 2022.04.22 |