Why is function.call.call not a function?
Code:
let fun = x => x * x;
-> undefined
typeof fun.call.call
-> "function"
fun.call.call()
VM251:1 Uncaught TypeError: fun.call.call is not a function
Why is fun.call.call
not a function when typeof fun.call.call -> "function"
?
+3
Saravana
source
to share
No one has answered this question yet
See similar questions:
fourteen
3
or similar:
6493
3915
2660
2644
2201
2192
1986
1498
1251
694