Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: isNaN() の JavaScript ロジック
ちょっと私が欲しいのは、テキストボックスに入力された値が数値ではないこと、または関数を使用していないことを確認することだけですisNaN();。何か方法はありますか?
isNaN();
parseFloat(value)!== +value;
しかし、isNaN(値) の何が問題なのですか?