Why a === b returns TRUE when a and b are single elements (numbers or strings)

That’s not completely accurate:

julia> BigInt(1) === BigInt(1)
false

Arbitrary-precision numbers in Julia are implemented with mutable structs

1 Like