typeof演算子は、パラメータに指定した値が何であるかを文字列で返すものです。
typeof(123)
・・・number
typeof("ABC")
・・・string
typeof("encodeURI")
・・・function
typeof(true)
・・・boolean
typeof(document)
・・・object
typeof(aaaaa)
・・・undefined
だそうです、引数チェックに使えますね。
typeof演算子は、パラメータに指定した値が何であるかを文字列で返すものです。
typeof(123)
・・・number
typeof("ABC")
・・・string
typeof("encodeURI")
・・・function
typeof(true)
・・・boolean
typeof(document)
・・・object
typeof(aaaaa)
・・・undefined
だそうです、引数チェックに使えますね。