Javascript Tagalog - 문자열 trimEnd 메서드
2810 단어 tagalogtrimendpinoyjavascript
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.
Javascript에서 trimEnd 메서드를 사용하시겠습니까?
Yung trimEnd method ay aalisin niyalang yung mga 공백 sa end ng 문자열. 가논 랑.
'\n' 및 '\t'와 같은 공백에는 sila sa 트리밍 btw가 포함되었습니다.
파노 가미틴:
const x = " hello "
console.log( x.length ) // 13
//Return Value
console.log( x.trimEnd() ) // hello
console.log( x.trimEnd().length ) // 9
bumaba yung length ng na trim, kasi nga nawala yung mga space sa hulihan :) 에헤헤.
// Di naapektuhan yung original string
console.log( x ) // hello
console.log( x.length ) // 13
baka 지나치게 단순화되고 부정확한 정보 nasulat ko 그래서 여기에 더 자세한 문서가 있습니다(영어).
MDN Documentation - trimEnd method
더 많은 tagalog Javascript 학습 리소스:
https://javascript-in-tagalog.netlify.app
Reference
이 문제에 관하여(Javascript Tagalog - 문자열 trimEnd 메서드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mmvergara/javascript-tagalog-string-trimend-method-bln텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)