w2utils.isInt
更新日: 2018-09-07
isInt(str)
文字列がint
であればtrue
を返します。 戻り値はboolean
です。
- str: string
- チェックする文字列。
説明
対象の文字列がint
かどうかを判定します。 int
であればtrue
を返し。 int
でなければfalse
を返します。
以下のように指定することができます。
var a = w2utils.isInt('3');
console.log(a);
デモ
int
かどうかをチェックして、結果をconsole.log
に出力します。
JavaScript
var a = w2utils.isInt('3');
console.log('3 : ' + a); // true
a = w2utils.isInt('1.23e2');
console.log('1.23e2 : ' + a); // false
a = w2utils.isInt('1,234');
console.log('1,234 : ' + a); // false
a = w2utils.isInt('123.4');
console.log('123.4 : ' + a); // false
© 2017. .
Code licensed under theMIT License. Documentation licensed underCC BY 3.0.
このコンテンツはvitmalinaによるw2ui.utilsドキュメントを翻訳/改変したものです。