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.isFinite

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)
The definition of 'Number.isInteger' in that specification.

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.

ডকুমেন্ট ট্যাগ এবং অবদানকারী

 Contributors to this page: fscholz, teoli, tuxboy
 সর্বশেষ হালনাগাদ করেছেন: fscholz,