JSON Functions and Properties
In this Page
parse
Description | Parses a string as JSON. This is similar to the JavaScript .parse(). |
---|---|
Syntax | JSON.parse(text) |
Examples | Expression: Result: The string "null" is converted into the null value Expression: Result: The string is converted into an array: {array:{, ...}} "array": [1, 2, 3.1, one, true] 1, 2, 3.1, "one", true |
stringify
Description | Converts a JavaScript value to a JSON string. This is similar to the JavaScript .stringify(). |
---|---|
Syntax | JSON.stringify(value) |
Examples | Expression: JSON.stringify(null) Result: The null value is converted into the string "null". Expression: JSON.stringify(Date.now()) Result: The Date value is converted into a string, such as "2017-03-22T17:58:03.485Z". Expression: JSON.stringify($array) {array:{, ...}} "array": [1, 2, 3.1, one, true] 1, 2, 3.1, "one", true Result: The array value is converted into the string "[1,2,3.1,"one",true]". |
Have feedback? Email documentation@snaplogic.com | Ask a question in the SnapLogic Community
© 2017-2024 SnapLogic, Inc.