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

JavaScript의 문자열에서 처음 k 문자 제거

<시간/>

문자열과 숫자, 예를 들어 k를 받아 문자열에서 처음 k 문자가 제거된 다른 문자열을 반환하는 JavaScript 함수를 작성해야 합니다.

예:원래 문자열이 -

인 경우
const str = "this is a string"

그리고,

n = 4

출력은 -

여야 합니다.
const output = " is a string"

예시

이에 대한 코드는 -

const str = 'this is a string';
const removeN = (str, num) => {
   const { length } = str;
   if(num > length){
      return str;
   };
   const newStr = str.substr(num, length - num);
   return newStr;
};
console.log(removeN(str, 3));

출력

콘솔의 출력 -

s is a string