json
은 ""
을 읽을 수 있다.JSON.parse('""') // ''
''
은 읽지 못한다.JSON.parse("''") // SyntaxError: Unexpected token ''', "''" is not valid JSON
stringify
를 곁을이면 읽을 수 있다.JSON.parse(JSON.stringify('')) //''
JSON.parse(JSON.stringify("")) // ''
JSON.parse('') // SyntaxError: Unexpected end of JSON input
JSON.parse("") // SyntaxError: Unexpected end of JSON input