हां, जावास्क्रिप्ट अब "नल कोलेसिंग" ऑपरेटर का समर्थन करता है, लेकिन आप तार्किक OR (||) की अवधारणा का भी उपयोग कर सकते हैं। वाक्य रचना इस प्रकार है -
var anyVariableName=null; var anyVariableName=yourVariableName || yourActualValue;
उदाहरण
var fullName=null; console.log("The full name is="+fullName); var actualName=fullName || "David Miller"; console.log("The full name is="+actualName);
उपरोक्त प्रोग्राम को चलाने के लिए, आपको निम्न कमांड का उपयोग करने की आवश्यकता है -
node fileName.js.
यहाँ, मेरी फ़ाइल का नाम है demo81.js.
आउटपुट
यह निम्नलिखित आउटपुट देगा -
PS C:\Users\Amit\JavaScript-code> node demo81.js The full name is=null The full name is=David Miller