Test name | Executions per second |
---|---|
int comparison | 2572676352.0 Ops/sec |
string compare with locale | 4794446.5 Ops/sec |
string compare simple | 2642817792.0 Ops/sec |
special case | 41331164.0 Ops/sec |
const a = 1582804062513
const b = 1592804062513
const c = b - a
const d = a - b
const a = "1582804062513_note"
const b = "1592804062513_note"
const c = a.localeCompare(b)
const d = b.localeCompare(a)
const a = "1582804062513"
const b = "1592804062513"
const c = a > b
const d = b < c
const a = "1582804062513_note".substring(0, 13)
const b = "1592804062513_note".substring(0, 13)
const c = a > b
const d = b < c