"asc" vs "desc"

Perfume·2021년 8월 16일
0

firestore에서 특정 시각을 timestamp로 가져올 때 코드를 다음과 같이 쓸 수 있다.

.orderBy("timestamp", "asc")

asc는 뭐지?


이미지 출처: https://www.guru99.com/order-by-desc-and-asc.html

한 마디로 asc는 오름차순, desc는 내림차순이다.

.orderBy("timestamp", "asc")

로 오름차순한 데이터를 사용하면

이렇게 더 빨리 보낸 메시지가 위로 가고 (CSS 구린 것은 무시 바랍니다.. 아직 만드는 중임)

.orderBy("timestamp", "desc")

하면 이렇게 늦게 보낸 메시지가 더 위로 간다.

profile
공부하는 즐거움

0개의 댓글