हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना आवश्यक है जो एक स्ट्रिंग लेता है और मूल स्ट्रिंग के सभी वर्णों के साथ एक नया स्ट्रिंग देता है जिसमें केवल रिक्त स्थान हटा दिए जाते हैं।
उदाहरण
आइए इस फ़ंक्शन के लिए कोड लिखें -
const str = "This is an example string from which all whitespaces will be removed"; const removeWhitespaces = str => { let newStr = ''; for(let i = 0; i < str.length; i++){ if(str[i] !== " "){ newStr += str[i]; }else{ newStr += ''; }; }; return newStr; }; console.log(removeWhitespaces(str));
आउटपुट
व्हाइटस्पेस हटाने के बाद कंसोल में आउटपुट -
Thisisanexamplestringfromwhichallwhitespaceswillberemoved