Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

stringify function:

Return the JSON representation of the object.

Examples:

  • running: (stringify true) will give: "true"

  • running: (stringify 1e2) will give: "100"

  • running: (stringify {"key": [1, 2, "3"]}) will give: "{\"key\": [1, 2, \"3\"]}"

  • running: (stringify (+ 10 20)) will give: "30"