एक स्ट्रिंग को वैध हेक्स कोड के रूप में माना जा सकता है यदि इसमें 0-9 और a-f अक्षर के अलावा कोई वर्ण नहीं है
उदाहरण के लिए -
'3423ad' is a valid hex code '4234es' is an invalid hex code
हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना है जो एक स्ट्रिंग लेता है और जांचता है कि यह एक वैध हेक्स कोड है या नहीं।
उदाहरण
निम्नलिखित कोड है -
const str1 = '4234es'; const str2 = '3423ad'; const isHexValid = str => { const legend = '0123456789abcdef'; for(let i = 0; i < str.length; i++){ if(legend.includes(str[i])){ continue; }; return false; }; return true; }; console.log(isHexValid(str1)); console.log(isHexValid(str2));
आउटपुट
कंसोल में आउटपुट निम्नलिखित है -
false true