实现 es6 中的 Set

发布于 2023-05-04 19:16:49 字数 1314 浏览 46 评论 0

class MySet {
    constructor(iterator = []) {
        if (typeof iterator[Symbol.iterator] !== 'function') {
            throw new Error('arguments must be iteratorable')
        }
        this._data = []
        for (const item of iterator) {
            this.add(item)
        }
    }

    add(data) {
        if (!this.has(data)) {
            this._data.push(data)
        }
    }
    has(data) {
        for (const idx in this._data) {
            const item = this._data[idx]
            if (this.isEqual(item, data)) {
                this._data.splice(idx, 1)
                return true
            }
        }
        return false
    }
    clear() {
        this._data.length = 0
    }
    forEach(callback, thisArg) {
        for (const item of this._data) {
            callback.call(thisArg, item, item, this)
        }
    }
    get size() {
        return this._data.length
    }


    delete(data) {
        for (const item of this._data) {
            if (this.isEqual(item, data)) {
                return true
            }
        }
    }
   *[Symbol.iterator]() {
      for (const item of this._datas) {
        yield item
      }
    }

    isEqual(a, b) {
        // NaN
        if (a !== a && b !== b) {
            return true
        }
        return a === b

    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

寒江雪…

暂无简介

0 文章
0 评论
24 人气
更多

推荐作者

qq_eQNo9e

文章 0 评论 0

内心旳酸楚

文章 0 评论 0

mb_BlPo2I8v

文章 0 评论 0

alipaysp_ZRaVhH1Dn

文章 0 评论 0

alipaysp_VP2a8Q4rgx

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文