 
      
      compare()Compare two values
compare(a, b)
a (any)  — The first valueb (any)  — The second value
number — Returns -1, 0, or 1 if a is considered to be respectively less than, equal to, or greater than b
import sorting
 
compare(10, 23)               ' Returns -1
compare("Hello", "Dinfio")    ' Returns 1
compare(23, 23)               ' Returns 0