私はEloquent JSと高次関数についての章でこのコードの理解に問題があります。 4行目は、ブール論理式がどのようにこのステートメントはどのようにブール値を返します
function noisy (f) {
return function (arg) {
console.log ("calling with" , arg) ;
var val = f(arg);
console.log ("called with" ,arg, "- got",val) ;
console.log(typeof f(arg))
return val ;
};
}
noisy (Boolean)(0) ;
- ?
- このステートメントでは、どのようなfが使用されていますか?
'console.log(f)' – epascarello