私はコードがどのように機能するかわかりません:const countFrom = x => () => (x++, x);
from here 、動作:
const countFrom = x => () => (x++, x);
let a = countFrom(1)
console.log('output:', a()) // output: 2
console.log('output:', a()) // output: 3
console.log('output:', a()) // output: 4
console.log('output:', a()) // output: 5
.as-console-wrapper {min-height: 100%!important; top: 0;}
//const countFrom = x => () => (x++, x);
//Lets refactor the code a bit:
function countFrom(x){
return function(){
x++;
return x;
}
}
let a = countFrom(1)
//now a is the returned function at line 5, and x is stored as a local variable.
console.log('output:', a()) // output: 2 you call the function at line 5 so it adds 1 to x and returns it
.as-console-wrapper {min-height: 100%!important; top: 0;}
いくつかの側面を理解していれば、それは非常に簡単です。
()=> (x++,x)
_を返します(closure
が何であるかを参照)return x
_のように機能します。つまり、=> (x)
は_=> return x
_と同じです