반응형
날짜 2자리 표시
(“0” + this.getDate()).slice(-2);
월 2자리 표시
(“0” + (this.getMonth() + 1)).slice(-2);
//querySelectorAll로 가져온 노드리스트를 reverse하는 방법
You can't call Array.prototype.reverse on NodeListCollection. Instead, you should use:
var stars = [].slice.call(stars, 0).reverse()
localStorage 사용법.
출처 : www.taniarascia.com/how-to-use-local-storage-with-javascript/
[
How to Use Local Storage with JavaScript
I like making tutorials where you build a small application completely from scratch with plain JavaScript. A to-do list is a common app idea…
](https://www.taniarascia.com/how-to-use-local-storage-with-javascript/)
moment.js 사용법.
출처 : momentjs.com/
[
Moment.js | Home
Format Dates moment().format('MMMM Do YYYY, h:mm:ss a'); moment().format('dddd'); moment().format("MMM Do YY"); moment().format('YYYY [escaped] YYYY'); moment().format(); Relative Time moment("20111031", "YYYYMMDD").fromNow(); moment("20120620", "YYYYMMDD"
momentjs.com
반응형
'HTML CSS' 카테고리의 다른 글
HTTP's methods XHR vs fetch (0) | 2020.11.14 |
---|---|
.appendChild()가 DOM 노드를 "이동"시키는 이유 (0) | 2020.10.09 |
TIL 1006 Nodes vs Elements .contains() .parentElement (0) | 2020.10.06 |
TIL 0923 요소 숨기기, 보이기 스타일 추가 정규표현식 버블링 vs 캡쳐링 onclick() vs addEventListener (0) | 2020.09.23 |
TIL 0922 CSS 가운데정렬 display DOM (0) | 2020.09.22 |
댓글