노마드코더 바닐라JS 로 크롬 앱 반들기 Day4

랸나·2023년 2월 23일
0

노마드코더

목록 보기
4/5
post-thumbnail

#5. Clock

5.0) Intervals

  • 폴더명/파일명.확장자 (ex. JS/greetings.js)

  • intervals :매번 일어나는 무언가

        setInterval(함수,밀리세컨드); > x초마다 반복적으로 발현
    	setTimeout(함수,밀리세컨드); > x초 이후에 1회 발현
  • new Date() : 지금 시간을 가져옴

5.1) Timeouts and Dates

  • date.gethours() / date.getminutes()...

5.2 PadStart

  • padStart(채워야하는 글자수,"채울 문자열")
  • ~~.getHours() < number임. 그래서 뒤에 padStart를 쓰려면 문자열로 변경해야함.

6. Quotes and Background

6.0) Quotes

  • Math.random();
  • Math.round(); > 반올림
  • Math.ceil(); > 올림
  • Math.floor(); > 내림

6.1) Backgrounds

  • document.createElement("HTML의 다양한 태그들..");
  • document.body.appendChild(); > 바디 아래에 추가
  • doucumnet.body.prepend(); > 바디 맨 위에 추가
profile
백엔드개발자

0개의 댓글