【Javascript】NaN(Not a Number)の判定方法。

if(parseInt(num) != ‘NaN’){}、とかやってたおろかな自分への戒めも。

if(isNaN(parseInt(num))){
	// 処理
}

ですよねー。そりゃ関数あるよねー。