본문 바로가기
HTML CSS

TIL 0924 날짜 2자리로 노드리스트reverse localStorage moment.js

by 짱닭 2020. 9. 24.
반응형

날짜 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 사용법.

DATA는 기존 트윗내용들이 들어있는 배열

출처 : 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…

www.taniarascia.com

](https://www.taniarascia.com/how-to-use-local-storage-with-javascript/)

moment.js 사용법.

element.created_at 는 원래 생성된 시각

출처 : 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

](https://momentjs.com/)

반응형

댓글