हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना है जो दो स्ट्रिंग्स लेता है और स्ट्रिंग्स में संबंधित असमानताओं की संख्या का पता लगाता है। यदि वे समान नहीं हैं तो संबंधित तत्व भिन्न होंगे
उदाहरण
मान लें कि निम्नलिखित हमारे तार हैं -
const str1 = 'Hello world!!!'; const str2 = 'Hellp world111';
उदाहरण
इसके लिए कोड होगा -
const str1 = 'Hello world!!!'; const str2 = 'Hellp world111'; const dissimilarity = (str1 = '', str2 = '') => { let count = 0; for(let i = 0; i < str1.length; i++){ if(str1[i] === str2[i]){ continue; }; count++; }; return count; }; console.log(dissimilarity(str1, str2));
आउटपुट
कंसोल में आउटपुट होगा -
4