JSON parse
Using method JSON.parse()
[1] it parses a JSON string, constructing the JavaScript value or object described by the string.
Although it might seem the same as Format / JSON
, its result differs depending on the input type:
number
parses the number and converts it to Webacus numberstring
parses the quoted string and outputs textboolean
parses the value and outputstrue
orfalse
object
parses the object and outputs formatted representation of the object
Sources:
[1] developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse