Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

문자열에서 모든 공백 제거 - JavaScript

<시간/>

문자열을 받아서 공백이 제거된 원래 문자열의 모든 문자를 사용하여 새 문자열을 반환하는 JavaScript 함수를 작성해야 합니다.

예시

이 함수의 코드를 작성해 봅시다 -

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