वेरिएबल से पहले का प्लस (+) चिन्ह परिभाषित करता है कि आप जिस वेरिएबल का उपयोग करने जा रहे हैं वह एक नंबर वेरिएबल है।
नीचे दिए गए कोड में, प्लस साइन के बारे में संक्षिप्त विवरण दिया गया है। निम्नलिखित कोड है -
उदाहरण
var firstValue="1000"; console.log("The data type of firstValue ="+typeof firstValues); var secondValue=1000; console.log("The data type of secondValue ="+typeof secondValue); console.log("The data type of firstValue when + sign is used ="+typeof +firstValue); var output=+firstValue + secondValue; console.log("Addition is="+output);
उपरोक्त प्रोग्राम को चलाने के लिए, आपको निम्न कमांड का उपयोग करने की आवश्यकता है -
node fileName.js.
आउटपुट
यहाँ, मेरी फ़ाइल का नाम है demo149.js। यह निम्नलिखित आउटपुट देगा -
PS C:\Users\Amit\JavaScript-code> node demo149.js The data type of firstValue =string The data type of secondValue =number The data type of firstValue when + sign is used =number Addition is=2000