MySet.prototype.has = function(item) {
    return -1 !== this[valuesSymbol].indexOf(item);
};