2024年5月25日
摘要: 有段代码如下: function createCounter(){ let i=0; function increment(){ i++; } function getValue(){ return i; } return {increment,getValue} } const counter = 阅读全文
posted @ 2024-05-25 15:51 龙种人 阅读(2) 评论(0) 推荐(0) 编辑