[ 자바스크립트(JavaScript) ] JSON 객체 깔끔하게 정리하기(depth 줄이기)
📍 JSON 객체 깔끔하게 정리하기(depth 줄이기) fetch나 axios를 이용해서 json형태의 데이터를 받아 올 때 다음과 같이 데이터가 너저분(?)할 때가 있다. let users = [ // 첫번째 객체 { gender: "female", name: { title: "Mrs", first: "Emília", last: "Vieira", }, location: { street: { number: 3944, name: "Rua Santa Luzia ", }, city: "Indaiatuba", state: "Acre", country: "Brazil", postcode: 26038, coordinates: { latitude: "23.2809", longitude: "-115.5400", }, ..
2021. 11. 18.