Rhapsodist
2020.03.07
Created By Rhapsodist
Rhapsodist
문자열에서 앞 , 뒤 공백을 제거하는 방법을 알아보자. 공백을 제거하는 함수 에는 다음과 같이 3가지의 함수가 존재한다.
trim 함수는 문자열의 앞 , 뒤 모든 공백을 제거하는 함수이다.
const str = ' trim function '
console.log(str.trim())
// => 'trim function'
trimRight 함수는 오른쪽, 즉 문자열 뒤쪽 공백을 모두 제거하는 함수이다.
const str = ' trim function '
console.log(str.trimRight())
// => ' trim function'
trimLeft 함수는 왼쪽, 즉 문자열 앞쪽 공백을 모두 제거하는 함수이다.
const str = ' trim function '
console.log(str.trimRight())
// => 'trim function '
© 2020, made by Rhapsodist