padStart()/padEnd()
이 메서드들은 주어진 길이에 맞게 앞/뒤 문자열을 채우고 이렇게 채운 새로운 문자열을 반환하는 메서드입니다.
padStart()
■ 문법
길이에 맞게 앞의 문자열을 채웁니다.
"문자열".padStart(길이)
"문자열".padStart(길이, 문자열)
■ 특징
▶ 문자열을 적지않고 본래길이보다 길게 길이를 요청하면 비어있는 자리는 공백처리가 됩니다.
■ 예시
이해를 돕기 위해 예시를 들어봅시다. 주석으로 결과값을 작성하였습니다.
const str1 = "456";
const currentStr1 = str1.padStart(1, "0"); //456
const currentStr2 = str1.padStart(2, "0"); //456
const currentStr3 = str1.padStart(3, "0"); //456
const currentStr4 = str1.padStart(4, "0"); //0456
const currentStr5 = str1.padStart(5, "0"); //00456
const currentStr6 = str1.padStart(6, "0"); //000456
const currentStr7 = str1.padStart(6, "1"); //111456
const currentStr8 = str1.padStart(6, "12"); //121456
const currentStr9 = str1.padStart(6, "123"); //123456
const currentStr10 = str1.padStart(6, "1234"); //123456
const currentStr11 = str1.padStart(6); // 456 : 비어있는 앞자리는 공백처리
padEnd()
■ 문법
길이에 맞게 뒤의 문자열을 채웁니다.
"문자열".padEnd(길이)
"문자열".padEnd(길이, 문자열)
■ 특징
▶ 문자열을 적지않고 본래길이보다 길게 길이를 요청하면 비어있는 자리는 공백처리가 됩니다.
■ 예시
이해를 돕기 위해 예시를 들어봅시다. 주석으로 결과값을 작성하였습니다.
const str1 = "456";
const currentStr12 = str1.padEnd(1, "0"); //456
const currentStr13 = str1.padEnd(2, "0"); //456
const currentStr14 = str1.padEnd(3, "0"); //456
const currentStr15 = str1.padEnd(4, "0"); //4560
const currentStr16 = str1.padEnd(5, "0"); //45600
const currentStr17 = str1.padEnd(6, "0"); //456000
const currentStr18 = str1.padEnd(6, "1"); //456111
const currentStr19 = str1.padEnd(6, "12"); //456121
const currentStr20 = str1.padEnd(6, "123"); //456123
const currentStr21 = str1.padEnd(6, "1234"); //456123
const currentStr22 = str1.padEnd(6); //456 (빈 뒷자리는 공백처리)
728x90
'JavaScript' 카테고리의 다른 글
함수의 유형 (3) | 2022.08.22 |
---|---|
includes() 메서드 (6) | 2022.08.17 |
repeat()메서드 (6) | 2022.08.17 |
concat() 메서드 (4) | 2022.08.17 |
replace() / replaceAll() 메서드 (4) | 2022.08.17 |
댓글