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

parse function:

  • Can also be called as parse_json

Parse a string into JSON value.

Examples:

  • running: (parse "[1, 2, 3, 4]") will give: [1, 2, 3, 4]

  • running: (parse "312") will give: 312

  • running: (parse "{}") will give: {}

  • running: (parse 400) will return nothing