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

not function:

  • Can also be called as !

Return false if the argument is true and true if the argument is false.

Examples:

  • running: (not true) will give: false

  • running: (not false) will give: true

  • running: (not (string? 12)) will give: true

  • running: (not 12) will return nothing