JavaScript Symbol.toStringTag प्रतीक एक बहुत प्रसिद्ध प्रतीक है जो एक स्ट्रिंग मूल्यवान गुण है जिसका उपयोग किसी वस्तु के निर्माण के दौरान उसका विवरण देने के लिए किया जाता है
Symbol.toStringTag प्रतीक के लिए कोड निम्नलिखित है -
उदाहरण
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } div { font-size: 20px; font-weight: 500; } </style> </head> <body> <h1>JavaScript Symbol.toStringTag Symbol</h1> <div class="sample"></div> <button class="Btn">CLICK HERE</button> <h3> Click on the above button to get the string description for objects </h3> <script> let fillEle = document.querySelector(".sample"); class testClass { get [Symbol.toStringTag]() { return 'Testing'; } } class helloClass { get [Symbol.toStringTag]() { return 'Hello World'; } } let test = new testClass(); let hello = new helloClass(); document.querySelector(".Btn").addEventListener("click", () => { fillEle.innerHTML += 'testClass = ' + test.toString() + "<br>"; fillEle.innerHTML += 'helloClas = ' + hello.toString() + "<br>"; }); </script> </body> </html>
आउटपुट
"यहां क्लिक करें" बटन पर क्लिक करने पर -