2014-03-17 関数の判定方法 関数の判定を行うには、instanceOfではなく、typeofを使うことが推奨されている方法。 function myFunc() {} console.log(typeof myFunc === "function");