File size: 109 Bytes
c930535
1
2
const make=(k)=>{let c=0;return ()=>{c+=k;return c;};};const step=make(5);console.log(step()+step()+step());