Heim > Fragen und Antworten > Hauptteil
1
2
3
4
5
6
<code>
function uncurryThis(){
function
uncurryThis(){
return function(){
return
(){
return Function.call.apply(fn,arguments)
Function.call.apply(fn,arguments)
}
}</code>
Anrufen und bewerben werden zusammen verwendet. . . Verstehe es nicht
滿天的星座2017-05-19 10:47:31
就是 apply function "call"
PHP中文网2017-05-19 10:47:31
你了解一下柯里化是什么意思,这个函数就很容易明白了。
这个函数的作用是反柯里化。
其实跟fn()()调用类似。