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

JavaScript 문자열에서 공백 수 찾기

<시간/>

공백이 포함된 문자열을 받는 JavaScript 함수를 작성해야 합니다. 함수는 단순히 해당 문자열에 있는 공백 수를 계산해야 합니다.

예를 들어 -

입력 문자열이 -

인 경우
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