हाँ, आप कक्षा की अवधारणा का उपयोग कर सकते हैं। यदि आप वास्तविक डेटा प्रकार की जांच करना चाहते हैं तो आप उदाहरण का उपयोग कर सकते हैं।
Instof डेटा प्रकार के बारे में बताता है। यहां नमूना जावास्क्रिप्ट कोड दिया गया है जो एक नया डेटा प्रकार बनाने और डेटा प्रकार की जांच करने के तरीके के बारे में एक संक्षिप्त विवरण देगा। यहां, मैं डेटा प्रकार की जांच करने के लिए कस्टम कार्यान्वयन दूंगा।
उदाहरण
निम्नलिखित कोड है -
//creating the class class Game { constructor(gameName) { this.gameName = gameName; } } //creating an object const ticTacToe = new Game("TicTacToe"); // checking the data type. function dataTypeBelongsTo(object) { if (object instanceof Game) return "Game"; return typeof object; } console.log("The ticTacToe is the object of Game class=" + (ticTacToe instanceof Game)); console.log("The data Type of ticTacToe is =" + dataTypeBelongsTo(ticTacToe)); console.log("The data Type Candy Cash is =" + dataTypeBelongsTo("Cady Cash"));
उपरोक्त प्रोग्राम को चलाने के लिए, आपको निम्न कमांड का उपयोग करने की आवश्यकता है -
node fileName.js.
यहाँ, मेरी फ़ाइल का नाम है demo288.js.
आउटपुट
यह कंसोल पर निम्न आउटपुट उत्पन्न करेगा -
PS C:\Users\Amit\javascript-code> node demo288.js The ticTacToe is the object of Game class=true The data Type of ticTacToe is =Game The data Type Candy Cash is =string