"!=" 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