Consider the following example:
let set = new Set()
set.add([3, 6])
If I attempt to use set.has([3, 6]) I expect to receive a true but I got a false, why?
Consider the following example:
let set = new Set()
set.add([3, 6])
If I attempt to use set.has([3, 6]) I expect to receive a true but I got a false, why?
