हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना है जो दो स्ट्रिंग्स लेता है और स्ट्रिंग्स में संबंधित असमानताओं की संख्या का पता लगाता है
संबंधित तत्व असमान होंगे यदि वे समान नहीं हैं। मान लें कि निम्नलिखित हमारे दो तार हैं -
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