[자바스크립트] 객체 키 값을 기준으로 역순으로 출력하기

tallhyun·2020년 5월 7일
0
const Object_A = {
  "1": {
    text: "객체",
  },
  "2": {
    text: "역순",
  },
};

const arr = Object.keys(Object_A).sort(function (a, b) {
  return b - a;
});
// arr=["2","1"]

arr.map((key) => console.log(Object_A[key].text));
// 역순개체
profile
보안, 클라우드, 풀스택에 관심이 있습니다.

0개의 댓글