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

and function:

  • Can also be called as &&

Return true if all the arguments are true, nothing if there is a non boolean argument and false if there is a false argument.

Examples:

  • running: (and true, true, true, true) will give: true

  • running: (and true, true, false, true) will give: false

  • running: (and true, true, 12, true) will return nothing