<html>
<body>
<h1>Using the <em>space</em> Parameter</h1>
<p>Insert the word "SPACE" for each white space:</p>
<pre id="demo"></pre>
<script>
var obj = { "name":"John", "age":"39", "city":"New York"};
var text = JSON.stringify(obj, null, "SPACE");
document.getElementById("demo").innerHTML = text;
</script>
</body>
</html>