wat
Version:
Community-controlled cheat sheets for every coder.
18 lines (14 loc) • 363 B
Markdown
## JSON.stringify(value[, replacer[, space]])
```js
JSON.stringify({ x: 5 });
// '{"x":5}'
JSON.stringify({ foo: 'bar', bar: 'foo'}, function(key, value){
return (key === 'bar') ? undefined : value;
});
// '{"foo":"bar"}'
JSON.stringify({x:5, y:7}, null, '\t');
// '{
// "x": 5,
// "y": 7
// }'
```