"=" function:

Compare two string as numbers and return true if both are equals.

Examples:

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

  • running: ("=" "100000000", "1E+8") will give: true

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

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