Comparative Operators
Equal to (==) (===)
Case Insensitive
log "hello" == "Hello"
// this will return trueCase Sensitive
log "hello" === "Hello"
// this will return false
log "world" === "world"
// this will return truelog "10" == 10
// this will return true
log "10" === 10
// this will return falseGreater than
Less than
Checking Contains
Ternary Operator (?)
Inverting A Comparison
Last updated