2018-07-24

2018 단어
일상 카드, 오늘 공부, 공부........................................................................
  • 문자열 의 확장 includes('str'): 지정 한 위치 에 문자 가 있 는 지 판단 하고 반환 값 은 불 값
  • 입 니 다.
    let ss = 'asd';
    console.log(ss.includes('a'));//true
    console.log(ss.includes('e'));//false
    
    startsWith('str',index): 문자열 이 지정 한 문자 로 시작 하 는 지 판단 합 니 다. index 는 찾기 의 끝 에 표 시 됩 니 다.
    let str = 'aasderst';
    console.log(str.startsWith('s',2)); //true
    console.log(str.startsWith('s',3));//false
    console.log(str.startsWith('a'));//true
    
    endsWith('str',num): 문자열 이 지정 한 문자 로 끝 나 는 지 판단 하고 num 은 찾 은 개 수 를 표시 합 니 다.
    let s3 = 'weasfer';
    console.log(s3.endsWith('r')); //true
    console.log(s3.endsWith('a',3));//true
    console.log(s3.endsWith('a',2));//false
    
    repeat(num): 문자열 을 몇 번 반복 합 니 다. num 은 음수 와 Infinity 가 되 어 서 는 안 됩 니 다.
    let s4 = 'asd';
    console.log(s4.repeat(2));//asdasd
    console.log(s4.repeat(0));console.log(s4.repeat(-0)); //  
    console.log(s4.repeat(0.9));console.log(s4.repeat(-0.5));//  
    
    padStart(' ', ): 머리 에 문자열 을 보완 합 니 다.
     let s5 = 'llo';
     console.log(s5.padStart(2,'he'));//llo
     console.log(s5.padStart(3,'he'));//llo
     console.log(s5.padStart(5,'he'));//hello
     console.log(s5.padStart(7,'he'));//hehello
     console.log(s5.padStart(8,'he'));//hehehllo
    
    padEnd(' ', ): 끝 에 문자열 을 보완 합 니 다.
    
    let s6 = 'llo';
    console.log(s6.padEnd(2,'ed'));//llo
    console.log(s6.padEnd(3,'ed'));//llo
    console.log(s6.padEnd(5,'ed'));//lloed
    console.log(s6.padEnd(7,'ed'));//lloeded
    console.log(s6.padEnd(8,'ed'));//lloedede
    

    메모: 원래 문자열 의 길이 가 지정 한 최소 문자열 보다 크 거나 같 으 면 원래 문자열 로 돌아 갑 니 다.

    좋은 웹페이지 즐겨찾기