हमें एक जावास्क्रिप्ट फ़ंक्शन लिखने की आवश्यकता है जो रिक्त स्थान वाली स्ट्रिंग लेता है। फ़ंक्शन को बस उस स्ट्रिंग में मौजूद रिक्त स्थान की संख्या की गणना करनी चाहिए।
उदाहरण के लिए -
यदि इनपुट स्ट्रिंग है -
const str = 'this is a string';
तब आउटपुट होना चाहिए -
const output = 4;
उदाहरण
const str = 'this is a string'; const countSpaces = (str = '') => { let count = 0; for(let i = 0; i < str.length; i++){ const el = str[i]; if(el !== ' '){ continue; }; count++; }; return count; }; console.log(countSpaces(str));
आउटपुट
यह निम्नलिखित आउटपुट देगा -
4