F
François Montel
Can anyone explain this?
Since a is an array, how come the last statement evaluates as true?
=> truea = ["b"] => ["b"]
a == "b" => false
"#{a}" == "b"
Since a is an array, how come the last statement evaluates as true?