会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
JohnYang
定心者,勇猛精进,终获证果 (知乎:https://www.zhihu.com/people/johnyang819)
博客园
首页
新随笔
联系
订阅
管理
2022年7月23日
JavaScript中通过闭包来实现私有变量的一种方法
摘要: 'use strict'; const SecretHolder = (function () { const secrets = new WeakMap(); return class { constructor() { this.test = secrets; } setSecrete(secr
阅读全文
posted @ 2022-07-23 16:42 JohnYang819
阅读(127)
评论(0)
推荐(0)
编辑