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

"!=" function:

  • Can also be called as "<>"

Compare two number as strings and return true if both are not equals.

Examples:

  • running: ("!=" "1E400", "3E400") will give: true

  • running: ("!=" "1E99", "1E99") will give: false

  • running: ("!=" "1", 1) will return nothing

  • running: ("!=" 1, "1") will return nothing