Results 1 - 8 of 8

JSON.parse()

The JSON.parse() method parses a string as JSON, optionally transforming the value produced by parsing.
ECMAScript5 JavaScript JSON Method Reference

JSON.stringify()

The JSON.stringify() method converts a JavaScript value to a JSON string, optionally replacing values if a replacer function is specified, or optionally including only the specified properties if a replacer array is specified.
JavaScript JSON Method Reference stringify

JSON

The JSON object contains methods for parsing JavaScript Object Notation (JSON) and converting values to JSON. It can't be called or constructed, and aside from its two method properties it has no interesting functionality of its own.
JavaScript JSON Object polyfill Reference Référence

Console.dir()

Displays an interactive list of the properties of the specified JavaScript object. The output is presented as a hierarchical listing with disclosure triangles that let you see the contents of child objects.
API console console.dir Debugging debugging dir DOM JSON Method NeedsBrowserCompatibility web console Web Development

Object initializer

Objects can be initialized using new Object(), Object.create(), or using the literal notation (initializer notation). An object initializer is a list of zero or more pairs of property names and associated values of an object, enclosed in curly braces ({}).
computed ECMAScript 2015 ECMAScript6 JavaScript JSON Literal Methods mutation Object Primary Expression properties