Javascript json 데이터 예쁘게 출력하기

2024. 12. 1. 15:39Javascript

원본 데이터

[
    { id: 1, name: 'John Doe', email: 'john.doe@example.com', age: 31 },
    { id: 2, name: 'Jane Smith', email: 'jane.smith@example.com', age: 26 }
]

적용

JSON.stringify(value, replacer, space)

alert(`Saved ${changes.length} records:\n${JSON.stringify(changes, null, 4)}`);

결과

[
    {
        "id": 1,
        "name": "John Doe",
        "email": "john.doe@example.com",
        "age": 31
    },
    {
        "id": 2,
        "name": "Jane Smith",
        "email": "jane.smith@example.com",
        "age": 26
    }
]