次のJavaScriptはなぜですか
Math instanceof Math
エラーをスローします
TypeError: Expecting a function in instanceof check, but got #<Object>
?
次のJavaScriptはなぜですか
Math instanceof Math
エラーをスローします
TypeError: Expecting a function in instanceof check, but got #<Object>
?
Math
とは異なり、はコンストラクタではないためですObject
。
参照してくださいinstanceof
:
構文
object instanceof constructor
パラメーター
object
:テストするオブジェクト。
constructor
:テストする関数