摘要: function fa() { let con="闭包的内容"; function fb() { console.log(con); } return fb; } let content = fa()(); content; //闭包的内容 let content2 = fa(); content2 阅读全文
posted @ 2022-12-04 16:44 星米尔工作室 阅读(28) 评论(0) 推荐(0)