📜  javascript json stringify indented - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:27.628000             🧑  作者: Mango

代码示例1
JSON.stringify({a:1,b:2,c:{d:1,e:[1,2]}}, null, 4); // Indented 4 spaces
 JSON.stringify({a:1,b:2,c:{d:1,e:[1,2]}}, null, "\t"); // Indented with tab