typeofメソッドを使用してundefinedタイプを判断する

467 ワード

js判定undefinedタイプについては,typeofメソッドを用いてtypeofが文字列を返し,そのうち1つがundefinedである.
js判定undefinedタイプ

if (reValue== undefined)
{
alert("undefined");
}

判断できないことに気づいて、最後に資料を調べたらtypeof方法を使います.

if (typeof(reValue) == "undefined")
{ 
alert("undefined");
}

typeofは文字列を返し、「number」、「string」、「boolean」、「object」、「function」、「undefined」の6つの可能性があります.使用時には必ず注意してください.