What is the minimum valid JSON?

后端 未结 8 1910
慢半拍i
慢半拍i 2020-11-22 16:01

I\'ve carefully read the JSON description http://json.org/ but I\'m not sure I know the answer to the simple question. What strings are the minimum possible valid JSON?

8条回答
  •  温柔的废话
    2020-11-22 16:42

    var x;
    JSON.stringify(x); // will output "{}"
    

    So your answer is "{}" which denotes an empty object.

提交回复
热议问题