This translation is incomplete. Please help translate this article from English.
This is an experimental technology, part of the ECMAScript 6 (Harmony) proposal.
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future version of browsers as the spec changes.
সারসংক্ষেপ
পাস করা ভ্যালু সসীম কিনা তা জানায়। গ্লোবাল isFinite
এর উন্নততর সংস্করণ।
সিনট্যাক্স
Number.isFinite(testValue);
প্যারামিটার
testValue
- সে সংখ্যা পরীক্ষা করে বলা হবে সসীম কিনা।
বিবরণ
গ্লোবাল isFinite
ফাংশনটির সঙ্গে তুলনা করে বলা যায়, এই মেথডটি জোর পূর্বক প্যারামিটারকে সংখ্যার রুপান্তর করে না। কেবলমাত্র যে সকল নাম্বার টাইপের আর্গুমেন্ট সসীম সংখ্যা হবে, তাদের জন্যই মেথডটি true
রিটার্ন করবে।
উদাহরণ
Number.isFinite(Infinity); // false Number.isFinite(NaN); // false Number.isFinite(-Infinity); // false // all other numbers true Number.isFinite(0); Number.isFinite(2e64); // everything else is false Number.isFinite("0"); // false, would've been true with global isFinite
Polyfill
Number.isFinite = Number.isFinite || function(value) { return typeof value === "number" && isFinite(value); }
Specifications
Specification | Status | Comment |
---|---|---|
ECMAScript 6 (ECMA-262) |
Release Candidate | Initial definition. |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 19 | 16 (16) | Not supported | 15 | Not supported |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | ? | ? | 16.0 (16) | ? | ? | ? |
See also
- The
Number
object it belongs to.