js closure

it2026-04-22  8

var f = ( function() { var a = 1; return () => { a++; console.log(a); } }()); // 2 3 4 f() f() f()

  

转载于:https://www.cnblogs.com/ax-null/p/6778362.html

相关资源:数据结构—成绩单生成器
最新回复(0)