हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना आवश्यक है जो एक स्ट्रिंग लेता है जो एक ASCII संख्या का प्रतिनिधित्व करता है। फ़ंक्शन को संख्या को उसके संगत हेक्साडेसिमल कोड में बदलना चाहिए और हेक्साडेसिमल वापस करना चाहिए।
उदाहरण के लिए -
f इनपुट ASCII स्ट्रिंग है -
const str = '159';
फिर इसके लिए हेक्साडेसिमल कोड 313539 होना चाहिए।
उदाहरण
निम्नलिखित कोड है -
const str = '159'; const convertToHexa = (str = '') =>{ const res = []; const { length: len } = str; for (let n = 0, l = len; n < l; n ++) { const hex = Number(str.charCodeAt(n)).toString(16); res.push(hex); }; return res.join(''); } console.log(convertToHexa('159'));
आउटपुट
कंसोल पर आउटपुट निम्न है -
313539