जावास्क्रिप्ट में बड़ी संख्या में स्टोर करने के लिए, + ऑपरेटर के बजाय BigInt () का उपयोग करें। यदि आप + ऑपरेटर का उपयोग करेंगे, तो सटीकता के नुकसान की अपेक्षा करें।
मान लें कि निम्नलिखित हमारी बड़ी संख्या है और हम BigInt() -
. का उपयोग करके स्टोर कर रहे हैंconsole.log("Loss of precision with + operator..")
उदाहरण
निम्नलिखित कोड है -
var stringValue1="100"; console.log("The integer value="); console.log(+stringValue1); var stringValue2="2312123211345545367"; console.log("Loss of precision with + operator..") console.log(+stringValue2); const storeLongInteger=BigInt("2312123211345545367"); console.log("No loss of precision with BigInt()"); console.log(storeLongInteger);
उपरोक्त प्रोग्राम को चलाने के लिए, आपको निम्न कमांड का उपयोग करने की आवश्यकता है -
node fileName.js.
यहाँ, मेरी फ़ाइल का नाम है demo212.js.
आउटपुट
कंसोल पर आउटपुट इस प्रकार है -
PS C:\Users\Amit\JavaScript-code> node demo213.js The integer value= 100 Loss of precision with + operator.. 2312123211345545000 No loss of precision with BigInt() 2312123211345545367n