Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Number.toInteger()

この記事は編集レビューを必要としています。ぜひご協力ください

この翻訳は不完全です。英語から この記事を翻訳 してください。

廃止 Gecko 33 (Firefox 33 / Thunderbird 33 / SeaMonkey 2.30)
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

非標準
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

概要

渡された引数を評価しintegerに変換します。しかし実装は取り除かれました。

変換後の値がNaNnull または undefinedなら、0が返ります。変換後の値がfalseなら、 0が返ります。trueなら、 1が返ります。

構文

Number.toInteger(number)

引数

number
integerに変換される値

例: toIntegerを使う

いくつかのテスト値のアラート:

Number.toInteger(0.1);     // 0
Number.toInteger(1);       // 1
Number.toInteger(Math.PI); // 3
Number.toInteger(null);    // 0

仕様

  • Number.toInteger()はECMAScript第6版ドラフト仕様でサポートされておりましたが、 August 23, 2013にドラフト Rev 17で取り除かれました。

ブラウザ実装状況

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本サポート 未サポート Firefox 16 to 32 未サポート 未サポート 未サポート
機能 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本サポート 未サポート 未サポート Firefox 16 to 32 未サポート 未サポート 未サポート

関連情報

  • The Number object it belongs to.

ドキュメントのタグと貢献者

 このページの貢献者: shide55
 最終更新者: shide55,