हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना है जो दो स्ट्रिंग्स, str1 और str2 में लेता है। फ़ंक्शन को यह निर्धारित करना चाहिए कि str1 str2 के साथ समाप्त होता है या नहीं। इस आधार पर हमारे फ़ंक्शन को एक बूलियन लौटाना चाहिए।
ये रही हमारी पहली स्ट्रिंग -
const str1 = 'this is just an example';
यह रहा हमारा दूसरा तार -
const str2 = 'ample';
उदाहरण
निम्नलिखित कोड है -
const str1 = 'this is just an example'; const str2 = 'ample'; const endsWith = (str1, str2) => { const { length } = str2; const { length: l } = str1; const sub = str1.substr(l - length, length); return sub === str2; }; console.log(endsWith(str1, 'temple')); console.log(endsWith(str1, str2));
आउटपुट
यह कंसोल में निम्न आउटपुट उत्पन्न करेगा -
false true