2022. 08. 12 JSON.stringify()

홍왕열·2022년 8월 12일
0

TIL

목록 보기
42/56
post-thumbnail

JSON.stringify()

JSON.stringify() 메서드는 JavaScript 값이나 객체를 JSON 문자열로 변환한다.

나같은 경우는 배열 안에 문자들을 비교하기 위해 사용하였다.

1. { id: 'orderCreated', label: '최근 주문일', sortValue: ['chart_updated_at'], sortable: true, },
2. const [sortingItem, setSortingItem] = useState(['chart_updated_at']);

console.log(JSON.stringify(sortingItem) === JSON.stringify(boardHead[5].sortValue), 123)
//true 123
profile
코딩 일기장

0개의 댓글