私はこのコードを持っています
var a = function(){}
var b = a.call
b() // TypeError: b is not a function
typeof bは'function'でconsole.log(b)示しますƒ call() { [native code] }。
誰かがこの動作を説明できますか?
私はこのコードを持っています
var a = function(){}
var b = a.call
b() // TypeError: b is not a function
typeof bは'function'でconsole.log(b)示しますƒ call() { [native code] }。
誰かがこの動作を説明できますか?