배열의 특정 요소를 기준으로 sort 정렬

혜진 조·2022년 9월 14일
0

자바스크립트

목록 보기
7/12
const array = ["A","G","B","F","D"]

array.sort() //['A', 'B', 'D', 'F', 'G']


const array_2 = [
   {
      id:1,
      text:"D"
	},
   {
      id:2,
      text:"C"
	},
   {
      id:3,
      text:"A"
	},
   {
      id:1,
      text:"B"
	},
]

array_2.sort((a,b)=>{
  if(a.text>b.text){
    return 1;
  }
  if(a.text<b.text){
  	return -1;
  }
  return 0;
})

//[{id: 3, text: 'A'},
//{id: 1, text: 'B'},
//{id: 2, text: 'C'},
//{id: 1, text: 'D'}]
profile
나를 믿고 한 걸음 한 걸음 내딛기! 🍏

0개의 댓글