자바스크립트 타갈로그어 - String endsWith 메소드

Disclaimer: This is a Blog i made with the initial intention of reinforcing my knowledge in JS. I just thought sharing my blogs might be helpful for someone since they are written in tagalog/taglish. Incase of Misinformation I won't be responsible for it and you can comment on the blog to address the mistake or email me. I'm always trying my best to be as accurate as possible. take a look at other resources just to be sure.
Ano ngaba ang String endsWith Method sa Javascript?
yung endsWith 메소드 sa javascript ay mag rereturn ng 부울 값(true 또는 false) yung 문자열이 nag e-end sa binigay mong 문자열을 인수로 사용하는지 여부에 따라 다름

파노 가미틴:
첫 번째 인수
yung 첫 번째 인수 ay yung string na gusto mo tignan if

x = 'mm vergara'

console.log( x.endsWith('vergara') ) // TRUE

console.log( x.endsWith('ara') ) // TRUE

console.log( x.endsWith('mm') ) // FALSE




두 번째 인수(선택사항)
yung 두 번째 인수는 mag dedetermine kung ano 길이 ng 문자열 mo이며, 기본적으로 yung 길이는 yung 길이 ng 문자열 mo입니다(이 예에서는 10).
  • gusto mo라면 두 번째 인수를 사용하여 yung string babaan mo yung 길이를 자릅니다. tignan monalang pics para magets mo.

  • //lenght of string is 10
    x = 'mm vergara'
    
    // Searching sa "mm vergara"
    console.log( x.endsWith('vergara') ) // TRUE
    
    // Searching sa "mm vergar"
    console.log( x.endsWith('vergara',9) ) // False
    
    // Searching as "mm verg"
    console.log( x.endsWith('vergara',7) ) // False
    



    baka 지나치게 단순화되고 부정확한 정보 nasulat ko 그래서 여기에 더 자세한 문서가 있습니다(영어).
    MDN Documentation - String endsWith method

    더 많은 tagalog Javascript 학습 리소스:
    https://javascript-in-tagalog.netlify.app

    좋은 웹페이지 즐겨찾기