ये हैं 5 तरीके किसी मान . को रूपांतरित करने के लिए एक स्ट्रिंग . के लिए . वे हैं
-
खाली स्ट्रिंग्स को जोड़ना
-
टेम्प्लेट स्ट्रिंग्स
-
JSON. कड़ा करना
-
टूस्ट्रिंग ()
-
स्ट्रिंग ()
उदाहरण
निम्नलिखित उदाहरण में, उपरोक्त सभी विधियों का उपयोग एक मान को एक स्ट्रिंग में बदलने के लिए किया गया था और अंतिम परिणाम आउटपुट में दिखाए गए अनुसार प्रदर्शित किया गया था।
<html> <body> <script> const value = 123; document.write((value + '') +" "+typeof (value + '')); document.write("</br>"); document.write((`${value}`) +" "+typeof (`${value}`)); document.write("</br>"); document.write((JSON.stringify(value)) +" "+typeof (JSON.stringify(value))); document.write("</br>"); document.write((value.toString()) +" "+typeof (value.toString())); document.write("</br>"); document.write((String(value)) +" "+typeof(String(value))); </script> </body> </html>
आउटपुट
123 string 123 string 123 string 123 string 123 string